From: Kurt B. Kaiser Date: Sun, 15 Sep 2002 20:50:02 +0000 (+0000) Subject: Merge Py Idle's Rev 1.5 X-Git-Tag: v2.3c1~4070 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=87807a66c4c911a58098dae037c176204f33b6d6;p=thirdparty%2FPython%2Fcpython.git Merge Py Idle's Rev 1.5 Use string.ascii_letters instead of string.letters (SF bug #226706) --- diff --git a/Lib/idlelib/AutoExpand.py b/Lib/idlelib/AutoExpand.py index c50e52a14f8a..88018305fc2e 100644 --- a/Lib/idlelib/AutoExpand.py +++ b/Lib/idlelib/AutoExpand.py @@ -13,7 +13,7 @@ class AutoExpand: ]), ] - wordchars = string.letters + string.digits + "_" + wordchars = string.ascii_letters + string.digits + "_" def __init__(self, editwin): self.text = editwin.text