Searched defs:resizemode (Results 1 - 2 of 2) sorted by relevance

/external/python/cpython2/Lib/lib-tk/
H A Dturtle.py133 'pu', 'radians', 'right', 'reset', 'resizemode', 'rt',
164 "resizemode" : "noresize",
1941 def __init__(self, resizemode=_CFG["resizemode"]):
1942 self._resizemode = resizemode # or "user" or "noresize"
1959 def resizemode(self, rmode=None): member in class:TPen
1960 """Set resizemode to one of the values: "auto", "user", "noresize".
1972 If no argument is given, return current resizemode.
1973 resizemode("user") is called by a call of shapesize with arguments.
1977 >>> turtle.resizemode("noresiz
[all...]
/external/python/cpython3/Lib/
H A Dturtle.py134 'pu', 'radians', 'right', 'reset', 'resizemode', 'rt',
162 "resizemode" : "noresize",
2025 def __init__(self, resizemode=_CFG["resizemode"]):
2026 self._resizemode = resizemode # or "user" or "noresize"
2044 def resizemode(self, rmode=None): member in class:TPen
2045 """Set resizemode to one of the values: "auto", "user", "noresize".
2057 If no argument is given, return current resizemode.
2058 resizemode("user") is called by a call of shapesize with arguments.
2062 >>> turtle.resizemode("noresiz
[all...]

Completed in 111 milliseconds