diff options
author | Fred Drake <fdrake@acm.org> | 2001-07-20 18:38:26 +0000 |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-07-20 18:38:26 +0000 |
commit | 960fdf9ac3a15eceebd8dd6882bedaae787fa5fb (patch) | |
tree | cd3f65a142062a53886e94f5ca63f4985c543be9 /Misc | |
parent | a6d2a04065e40997853c494efa03dcf2e91d6d95 (diff) | |
download | cpython-git-960fdf9ac3a15eceebd8dd6882bedaae787fa5fb.tar.gz |
Added the constants ascii_letters, ascii_lowercase, and ascii_uppercase
to the string module. This was determined to be the right approach in
SF bug #226706.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -149,6 +149,11 @@ Core Library +- The constants ascii_letters, ascii_lowercase. and ascii_uppercase + were added to the string module. These a locale-indenpendent + constants, unlike letters, lowercase, and uppercase. These are now + use in appropriate locations in the standard library. + - The flags used in dlopen calls can now be configured using sys.setdlopenflags and queried using sys.getdlopenflags. |