From 163b717cd3ae8ad10bc2bbe33ccb4036c8f38ad1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Mon, 13 Aug 2007 06:02:09 +0000 Subject: [PATCH] Fix typo. --- Lib/idlelib/PyParse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/idlelib/PyParse.py b/Lib/idlelib/PyParse.py index ea3cc27796f..d200b6cb2dd 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")