From 79e75e1916c33ee8e3de4c1b6c38221f2dba315c Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Fri, 20 Jul 2001 19:05:50 +0000 Subject: Use string.ascii_letters instead of string.letters (SF bug #226706). --- Lib/cmd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/cmd.py') 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 -- cgit v1.2.1