From: Martin v. Löwis Date: Mon, 13 Aug 2007 06:02:09 +0000 (+0000) Subject: Fix typo. X-Git-Tag: v3.0a1~421 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=163b717cd3ae8ad10bc2bbe33ccb4036c8f38ad1;p=python Fix typo. --- diff --git a/Lib/idlelib/PyParse.py b/Lib/idlelib/PyParse.py index ea3cc27796..d200b6cb2d 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")