commit | 79e75e1916c33ee8e3de4c1b6c38221f2dba315c | [log] [tgz] |
---|---|---|
author | Fred Drake <fdrake@acm.org> | Fri Jul 20 19:05:50 2001 +0000 |
committer | Fred Drake <fdrake@acm.org> | Fri Jul 20 19:05:50 2001 +0000 |
tree | 96e3e40993ba8b5e4123470493e36797b3b10fdd | |
parent | f69868f304cb2198e4f43e73d5d8873d7222cda8 [diff] [blame] |
Use string.ascii_letters instead of string.letters (SF bug #226706).
diff --git a/Tools/idle/AutoExpand.py b/Tools/idle/AutoExpand.py index 09f34b3..40d39f3 100644 --- a/Tools/idle/AutoExpand.py +++ b/Tools/idle/AutoExpand.py
@@ -21,7 +21,7 @@ ]), ] - wordchars = string.letters + string.digits + "_" + wordchars = string.ascii_letters + string.digits + "_" def __init__(self, editwin): self.text = editwin.text