diff options
Diffstat (limited to 'Lib/string.py')
-rw-r--r-- | Lib/string.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/string.py b/Lib/string.py index 913d980..d682fc7 100644 --- a/Lib/string.py +++ b/Lib/string.py @@ -24,6 +24,9 @@ whitespace = ' \t\n\r\v\f' lowercase = 'abcdefghijklmnopqrstuvwxyz' uppercase = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' letters = lowercase + uppercase +ascii_lowercase = lowercase +ascii_uppercase = uppercase +ascii_letters = ascii_lowercase + ascii_uppercase digits = '0123456789' hexdigits = digits + 'abcdef' + 'ABCDEF' octdigits = '01234567' |