Kaydet (Commit) 6b2320fa authored tarafından Fred Drake's avatar Fred Drake

Richard Mortier <rmm1002@users.sourceforge.net>:

Add the constants "printable" and "punctuation" to the string module.
üst 6f6d51d0
......@@ -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 = ''
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment