commit | 87807a66c4c911a58098dae037c176204f33b6d6 | [log] [tgz] |
---|---|---|
author | Kurt B. Kaiser <kbk@shore.net> | Sun Sep 15 20:50:02 2002 +0000 |
committer | Kurt B. Kaiser <kbk@shore.net> | Sun Sep 15 20:50:02 2002 +0000 |
tree | e82a34a0ad7db9fbd1b2a1aebe9b149ec92abea5 | |
parent | bd6be7aba5e5bc374aec42cd2e0aa8dcc7d230fb [diff] |
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 c50e52a..8801830 100644 --- a/Lib/idlelib/AutoExpand.py +++ b/Lib/idlelib/AutoExpand.py
@@ -13,7 +13,7 @@ ]), ] - wordchars = string.letters + string.digits + "_" + wordchars = string.ascii_letters + string.digits + "_" def __init__(self, editwin): self.text = editwin.text