diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2002-09-15 20:50:02 (GMT) |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2002-09-15 20:50:02 (GMT) |
commit | 87807a66c4c911a58098dae037c176204f33b6d6 (patch) | |
tree | e82a34a0ad7db9fbd1b2a1aebe9b149ec92abea5 /Lib | |
parent | bd6be7aba5e5bc374aec42cd2e0aa8dcc7d230fb (diff) | |
download | cpython-87807a66c4c911a58098dae037c176204f33b6d6.zip cpython-87807a66c4c911a58098dae037c176204f33b6d6.tar.gz cpython-87807a66c4c911a58098dae037c176204f33b6d6.tar.bz2 |
Merge Py Idle's Rev 1.5
Use string.ascii_letters instead of string.letters (SF bug #226706)
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/idlelib/AutoExpand.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/AutoExpand.py b/Lib/idlelib/AutoExpand.py index c50e52a..8801830 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 |