[Python-3000-checkins] r56974 - python/branches/py3k/Lib/idlelib/PyParse.py

martin.v.loewis python-3000-checkins at python.org
Mon Aug 13 08:02:11 CEST 2007


Author: martin.v.loewis
Date: Mon Aug 13 08:02:09 2007
New Revision: 56974

Modified:
   python/branches/py3k/Lib/idlelib/PyParse.py
Log:
Fix typo.


Modified: python/branches/py3k/Lib/idlelib/PyParse.py
==============================================================================
--- python/branches/py3k/Lib/idlelib/PyParse.py	(original)
+++ python/branches/py3k/Lib/idlelib/PyParse.py	Mon Aug 13 08:02:09 2007
@@ -120,7 +120,7 @@
             # strings don't have a .translate() method that supports
             # deletechars.
             uniphooey = s
-            str = []
+            s = []
             push = s.append
             for raw in map(ord, uniphooey):
                 push(raw < 127 and chr(raw) or "x")


More information about the Python-3000-checkins mailing list