commit | 163b717cd3ae8ad10bc2bbe33ccb4036c8f38ad1 | [log] [tgz] |
---|---|---|
author | Martin v. Löwis <martin@v.loewis.de> | Mon Aug 13 06:02:09 2007 +0000 |
committer | Martin v. Löwis <martin@v.loewis.de> | Mon Aug 13 06:02:09 2007 +0000 |
tree | ac0135f143a2752785e3f12bd89304f695d12641 | |
parent | 4040fb89618a0f6a2469269c5fe02d3613d1e3bc [diff] [blame] |
Fix typo.
diff --git a/Lib/idlelib/PyParse.py b/Lib/idlelib/PyParse.py index ea3cc27..d200b6c 100644 --- a/Lib/idlelib/PyParse.py +++ b/Lib/idlelib/PyParse.py
@@ -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")