@@ -2251,8 +2251,8 @@ Base and mixin classes
22512251 If all four arguments are given, the window manager keeps the ratio
22522252 between ``minNumer/minDenom `` and ``maxNumer/maxDenom ``; passing empty
22532253 strings removes any existing restriction.
2254- With no arguments, return a tuple of the four current values, or an empty
2255- string if no aspect restriction is in effect.
2254+ With no arguments, return a tuple of the four current values, or `` None ``
2255+ if no aspect restriction is in effect.
22562256 :meth: `wm_aspect ` is an alias of :meth: `!aspect `.
22572257
22582258 .. method :: wm_attributes(*args, return_python_dict=False, **kwargs)
@@ -2477,8 +2477,8 @@ Base and mixin classes
24772477 window's internally requested size, and *widthInc * and *heightInc * are
24782478 the pixel sizes of a horizontal and vertical grid unit.
24792479 Empty strings turn off gridded management.
2480- With no arguments, return a tuple of the four current values, or an empty
2481- string if the window is not gridded.
2480+ With no arguments, return a tuple of the four current values, or `` None ``
2481+ if the window is not gridded.
24822482 :meth: `wm_grid ` is an alias of :meth: `!grid `.
24832483
24842484 Not to be confused with the grid geometry manager :meth: `Grid.grid `.
@@ -2573,8 +2573,8 @@ Base and mixin classes
25732573 Set or query a hint to the window manager about where the window's icon
25742574 should be positioned.
25752575 Empty strings cancel an existing hint.
2576- With no arguments, return a tuple of the two current values, or an empty
2577- string if no hint is in effect.
2576+ With no arguments, return a tuple of the two current values, or `` None ``
2577+ if no hint is in effect.
25782578 :meth: `wm_iconposition ` is an alias of :meth: `!iconposition `.
25792579
25802580 .. method :: wm_iconwindow(pathName=None)
@@ -2643,7 +2643,8 @@ Base and mixin classes
26432643 When this flag is set, the window is ignored by the window manager: it is
26442644 not reparented into a decorative frame and the user cannot manipulate it
26452645 through the usual window manager controls.
2646- With no argument, return a boolean indicating whether the flag is set.
2646+ With no argument, return a boolean indicating whether the flag is set,
2647+ or ``None `` if it has not been set.
26472648 The flag is reliably honored only when the window is first mapped or
26482649 remapped from the withdrawn state.
26492650 :meth: `wm_overrideredirect ` is an alias of :meth: `!overrideredirect `.
0 commit comments