summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorKurt B. Kaiser <kbk@shore.net>2002-09-15 20:50:02 (GMT)
committerKurt B. Kaiser <kbk@shore.net>2002-09-15 20:50:02 (GMT)
commit87807a66c4c911a58098dae037c176204f33b6d6 (patch)
treee82a34a0ad7db9fbd1b2a1aebe9b149ec92abea5 /Lib
parentbd6be7aba5e5bc374aec42cd2e0aa8dcc7d230fb (diff)
downloadcpython-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.py2
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