diff options
Diffstat (limited to 'Lib/string.py')
-rw-r--r-- | Lib/string.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/string.py b/Lib/string.py index 6570fef3c2..8b6343a4ed 100644 --- a/Lib/string.py +++ b/Lib/string.py @@ -25,6 +25,8 @@ letters = lowercase + uppercase digits = '0123456789' hexdigits = digits + 'abcdef' + 'ABCDEF' octdigits = '01234567' +punctuaction = """!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~""" +printable = digits + letters + punctuation + whitespace # Case conversion helpers _idmap = '' |