diff options
Diffstat (limited to 'Lib/cmd.py')
-rw-r--r-- | Lib/cmd.py | 2 |
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 |