diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2007-08-13 06:02:09 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2007-08-13 06:02:09 (GMT) |
commit | 163b717cd3ae8ad10bc2bbe33ccb4036c8f38ad1 (patch) | |
tree | ac0135f143a2752785e3f12bd89304f695d12641 /Lib | |
parent | 4040fb89618a0f6a2469269c5fe02d3613d1e3bc (diff) | |
download | cpython-163b717cd3ae8ad10bc2bbe33ccb4036c8f38ad1.zip cpython-163b717cd3ae8ad10bc2bbe33ccb4036c8f38ad1.tar.gz cpython-163b717cd3ae8ad10bc2bbe33ccb4036c8f38ad1.tar.bz2 |
Fix typo.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/idlelib/PyParse.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ 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") |