From: Kurt B. Kaiser Date: Thu, 12 Jul 2001 22:13:51 +0000 (+0000) Subject: py-cvs-rel1_2 (Rev 1.4) merge, X-Git-Tag: v2.2a3~1236 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=180b6be18cdabbd1b6a7d6e523f68c231ec3f0d5;p=thirdparty%2FPython%2Fcpython.git py-cvs-rel1_2 (Rev 1.4) merge, "Add Alt-slash to Unix keydefs (I somehow need it on RH 6.2). Get rid of assignment to unused self.text.wordlist." --GvR --- diff --git a/Lib/idlelib/AutoExpand.py b/Lib/idlelib/AutoExpand.py index 0d57be4205b4..09f34b38d9fb 100644 --- a/Lib/idlelib/AutoExpand.py +++ b/Lib/idlelib/AutoExpand.py @@ -12,7 +12,7 @@ class AutoExpand: } unix_keydefs = { - '<>': [''], + '<>': ['', ''], } menudefs = [ @@ -25,7 +25,6 @@ class AutoExpand: def __init__(self, editwin): self.text = editwin.text - self.text.wordlist = None # XXX what is this? self.state = None def expand_word_event(self, event):