@@ -2280,8 +2280,8 @@ Base and mixin classes
22802280 If all four arguments are given, the window manager keeps the ratio
22812281 between ``minNumer/minDenom `` and ``maxNumer/maxDenom ``; passing empty
22822282 strings removes any existing restriction.
2283- With no arguments, return a tuple of the four current values, or an empty
2284- string if no aspect restriction is in effect.
2283+ With no arguments, return a tuple of the four current values, or `` None ``
2284+ if no aspect restriction is in effect.
22852285 :meth: `wm_aspect ` is an alias of :meth: `!aspect `.
22862286
22872287 .. method :: wm_attributes(*args, return_python_dict=False, **kwargs)
@@ -2506,8 +2506,8 @@ Base and mixin classes
25062506 window's internally requested size, and *widthInc * and *heightInc * are
25072507 the pixel sizes of a horizontal and vertical grid unit.
25082508 Empty strings turn off gridded management.
2509- With no arguments, return a tuple of the four current values, or an empty
2510- string if the window is not gridded.
2509+ With no arguments, return a tuple of the four current values, or `` None ``
2510+ if the window is not gridded.
25112511 :meth: `wm_grid ` is an alias of :meth: `!grid `.
25122512
25132513 Not to be confused with the grid geometry manager :meth: `Grid.grid `.
@@ -2602,8 +2602,8 @@ Base and mixin classes
26022602 Set or query a hint to the window manager about where the window's icon
26032603 should be positioned.
26042604 Empty strings cancel an existing hint.
2605- With no arguments, return a tuple of the two current values, or an empty
2606- string if no hint is in effect.
2605+ With no arguments, return a tuple of the two current values, or `` None ``
2606+ if no hint is in effect.
26072607 :meth: `wm_iconposition ` is an alias of :meth: `!iconposition `.
26082608
26092609 .. method :: wm_iconwindow(pathName=None)
@@ -2672,7 +2672,8 @@ Base and mixin classes
26722672 When this flag is set, the window is ignored by the window manager: it is
26732673 not reparented into a decorative frame and the user cannot manipulate it
26742674 through the usual window manager controls.
2675- With no argument, return a boolean indicating whether the flag is set.
2675+ With no argument, return a boolean indicating whether the flag is set,
2676+ or ``None `` if it has not been set.
26762677 The flag is reliably honored only when the window is first mapped or
26772678 remapped from the withdrawn state.
26782679 :meth: `wm_overrideredirect ` is an alias of :meth: `!overrideredirect `.
0 commit comments