summaryrefslogtreecommitdiff
path: root/Lib/cmd.py
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-07-20 19:05:50 +0000
committerFred Drake <fdrake@acm.org>2001-07-20 19:05:50 +0000
commit6510dd017142e13690cbc8ecc732fbacd5f55d48 (patch)
treeebfd94c204657b3a8d928afd23b4dd944490554a /Lib/cmd.py
parentd72122f13faccda7cea8b76674acda276243d0b5 (diff)
downloadcpython-6510dd017142e13690cbc8ecc732fbacd5f55d48.tar.gz
Use string.ascii_letters instead of string.letters (SF bug #226706).
Diffstat (limited to 'Lib/cmd.py')
-rw-r--r--Lib/cmd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/cmd.py b/Lib/cmd.py
index 10c11a2221..eacd498906 100644
--- a/Lib/cmd.py
+++ b/Lib/cmd.py
@@ -40,7 +40,7 @@ import string, sys
__all__ = ["Cmd"]
PROMPT = '(Cmd) '
-IDENTCHARS = string.letters + string.digits + '_'
+IDENTCHARS = string.ascii_letters + string.digits + '_'
class Cmd:
prompt = PROMPT