[Python-checkins] r66626 - python/branches/release25-maint/Lib/lib-tk/turtle.py

georg.brandl python-checkins at python.org
Fri Sep 26 09:14:57 CEST 2008


Author: georg.brandl
Date: Fri Sep 26 09:14:57 2008
New Revision: 66626

Log:
#3969: fix typo in turtle.py.


Modified:
   python/branches/release25-maint/Lib/lib-tk/turtle.py

Modified: python/branches/release25-maint/Lib/lib-tk/turtle.py
==============================================================================
--- python/branches/release25-maint/Lib/lib-tk/turtle.py	(original)
+++ python/branches/release25-maint/Lib/lib-tk/turtle.py	Fri Sep 26 09:14:57 2008
@@ -762,7 +762,7 @@
 
     startx = geometry.get('startx', _startx)
     if startx >= 0 or startx == None:
-        _startx = _startx
+        _startx = startx
     else:
         raise ValueError, "startx can not be less than 0"
 


More information about the Python-checkins mailing list