diff options
author | Florent Xicluna <florent.xicluna@gmail.com> | 2010-03-25 20:32:07 +0000 |
---|---|---|
committer | Florent Xicluna <florent.xicluna@gmail.com> | 2010-03-25 20:32:07 +0000 |
commit | c8a730bf72b1c95651a8a39766bf56635956a2e0 (patch) | |
tree | f53ce04480adb7566c934f08a34e09423eedd255 /Lib/lib-tk/turtle.py | |
parent | ff33e2f5e9c4d51e18387ccd723ccb3fddd53078 (diff) | |
download | cpython-git-c8a730bf72b1c95651a8a39766bf56635956a2e0.tar.gz |
Syntax cleanup `== None` -> `is None`
Diffstat (limited to 'Lib/lib-tk/turtle.py')
-rw-r--r-- | Lib/lib-tk/turtle.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Lib/lib-tk/turtle.py b/Lib/lib-tk/turtle.py index e9dba1047b..90dadf9895 100644 --- a/Lib/lib-tk/turtle.py +++ b/Lib/lib-tk/turtle.py @@ -783,7 +783,7 @@ class TurtleScreenBase(object): # needs amendment if not isinstance(self.cv, ScrolledCanvas): return self.canvwidth, self.canvheight - if canvwidth is None and canvheight is None and bg is None: + if canvwidth is canvheight is bg is None: return self.cv.canvwidth, self.cv.canvheight if canvwidth is not None: self.canvwidth = canvwidth @@ -999,7 +999,7 @@ class TurtleScreen(TurtleScreenBase): >>> mode() 'logo' """ - if mode == None: + if mode is None: return self._mode mode = mode.lower() if mode not in ["standard", "logo", "world"]: @@ -1339,7 +1339,7 @@ class TurtleScreen(TurtleScreenBase): ### repeatedly pressing the up-arrow key, ### consequently drawing a hexagon """ - if fun == None: + if fun is None: if key in self._keys: self._keys.remove(key) elif key not in self._keys: @@ -1460,7 +1460,7 @@ class TNavigator(object): def _setmode(self, mode=None): """Set turtle-mode to 'standard', 'world' or 'logo'. """ - if mode == None: + if mode is None: return self._mode if mode not in ["standard", "logo", "world"]: return @@ -2704,7 +2704,7 @@ class RawTurtle(TPen, TNavigator): >>> turtle.shapesize(5, 5, 12) >>> turtle.shapesize(outline=8) """ - if stretch_wid is None and stretch_len is None and outline == None: + if stretch_wid is stretch_len is outline is None: stretch_wid, stretch_len = self._stretchfactor return stretch_wid, stretch_len, self._outlinewidth if stretch_wid is not None: |