]> granicus.if.org Git - python/commitdiff
Fix typo.
authorMartin v. Löwis <martin@v.loewis.de>
Mon, 13 Aug 2007 06:02:09 +0000 (06:02 +0000)
committerMartin v. Löwis <martin@v.loewis.de>
Mon, 13 Aug 2007 06:02:09 +0000 (06:02 +0000)
Lib/idlelib/PyParse.py

index ea3cc27796f9a32061c67c2e37655459334de1ba..d200b6cb2dde3ab50cfe70e42be27059c559bfef 100644 (file)
@@ -120,7 +120,7 @@ class Parser:
             # 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")