@@ -2356,8 +2356,8 @@ Base and mixin classes
23562356 If all four arguments are given, the window manager keeps the ratio
23572357 between ``minNumer/minDenom `` and ``maxNumer/maxDenom ``; passing empty
23582358 strings removes any existing restriction.
2359- With no arguments, return a tuple of the four current values, or an empty
2360- string if no aspect restriction is in effect.
2359+ With no arguments, return a tuple of the four current values, or `` None ``
2360+ if no aspect restriction is in effect.
23612361 :meth: `wm_aspect ` is an alias of :meth: `!aspect `.
23622362
23632363 .. method :: wm_attributes(*args, return_python_dict=False, **kwargs)
@@ -2582,8 +2582,8 @@ Base and mixin classes
25822582 window's internally requested size, and *widthInc * and *heightInc * are
25832583 the pixel sizes of a horizontal and vertical grid unit.
25842584 Empty strings turn off gridded management.
2585- With no arguments, return a tuple of the four current values, or an empty
2586- string if the window is not gridded.
2585+ With no arguments, return a tuple of the four current values, or `` None ``
2586+ if the window is not gridded.
25872587 :meth: `wm_grid ` is an alias of :meth: `!grid `.
25882588
25892589 Not to be confused with the grid geometry manager :meth: `Grid.grid `.
@@ -2696,8 +2696,8 @@ Base and mixin classes
26962696 Set or query a hint to the window manager about where the window's icon
26972697 should be positioned.
26982698 Empty strings cancel an existing hint.
2699- With no arguments, return a tuple of the two current values, or an empty
2700- string if no hint is in effect.
2699+ With no arguments, return a tuple of the two current values, or `` None ``
2700+ if no hint is in effect.
27012701 :meth: `wm_iconposition ` is an alias of :meth: `!iconposition `.
27022702
27032703 .. method :: wm_iconwindow(pathName=None)
@@ -2766,7 +2766,8 @@ Base and mixin classes
27662766 When this flag is set, the window is ignored by the window manager: it is
27672767 not reparented into a decorative frame and the user cannot manipulate it
27682768 through the usual window manager controls.
2769- With no argument, return a boolean indicating whether the flag is set.
2769+ With no argument, return a boolean indicating whether the flag is set,
2770+ or ``None `` if it has not been set.
27702771 The flag is reliably honored only when the window is first mapped or
27712772 remapped from the withdrawn state.
27722773 :meth: `wm_overrideredirect ` is an alias of :meth: `!overrideredirect `.
0 commit comments