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")
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to