@@ -2246,8 +2246,8 @@ Base and mixin classes
22462246 If all four arguments are given, the window manager keeps the ratio
22472247 between ``minNumer/minDenom `` and ``maxNumer/maxDenom ``; passing empty
22482248 strings removes any existing restriction.
2249- With no arguments, return a tuple of the four current values, or an empty
2250- string if no aspect restriction is in effect.
2249+ With no arguments, return a tuple of the four current values, or `` None ``
2250+ if no aspect restriction is in effect.
22512251 :meth: `wm_aspect ` is an alias of :meth: `!aspect `.
22522252
22532253 .. method :: wm_attributes(*args, return_python_dict=False, **kwargs)
@@ -2472,8 +2472,8 @@ Base and mixin classes
24722472 window's internally requested size, and *widthInc * and *heightInc * are
24732473 the pixel sizes of a horizontal and vertical grid unit.
24742474 Empty strings turn off gridded management.
2475- With no arguments, return a tuple of the four current values, or an empty
2476- string if the window is not gridded.
2475+ With no arguments, return a tuple of the four current values, or `` None ``
2476+ if the window is not gridded.
24772477 :meth: `wm_grid ` is an alias of :meth: `!grid `.
24782478
24792479 Not to be confused with the grid geometry manager :meth: `Grid.grid `.
@@ -2568,8 +2568,8 @@ Base and mixin classes
25682568 Set or query a hint to the window manager about where the window's icon
25692569 should be positioned.
25702570 Empty strings cancel an existing hint.
2571- With no arguments, return a tuple of the two current values, or an empty
2572- string if no hint is in effect.
2571+ With no arguments, return a tuple of the two current values, or `` None ``
2572+ if no hint is in effect.
25732573 :meth: `wm_iconposition ` is an alias of :meth: `!iconposition `.
25742574
25752575 .. method :: wm_iconwindow(pathName=None)
@@ -2638,7 +2638,8 @@ Base and mixin classes
26382638 When this flag is set, the window is ignored by the window manager: it is
26392639 not reparented into a decorative frame and the user cannot manipulate it
26402640 through the usual window manager controls.
2641- With no argument, return a boolean indicating whether the flag is set.
2641+ With no argument, return a boolean indicating whether the flag is set,
2642+ or ``None `` if it has not been set.
26422643 The flag is reliably honored only when the window is first mapped or
26432644 remapped from the withdrawn state.
26442645 :meth: `wm_overrideredirect ` is an alias of :meth: `!overrideredirect `.
0 commit comments