mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Use string.ascii_letters instead of string.letters (SF bug #226706).
This commit is contained in:
parent
f69868f304
commit
79e75e1916
15 changed files with 17 additions and 18 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue