summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-07-20 18:38:26 +0000
committerFred Drake <fdrake@acm.org>2001-07-20 18:38:26 +0000
commit960fdf9ac3a15eceebd8dd6882bedaae787fa5fb (patch)
treecd3f65a142062a53886e94f5ca63f4985c543be9 /Misc
parenta6d2a04065e40997853c494efa03dcf2e91d6d95 (diff)
downloadcpython-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/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 55eddedbd7..344949c2b0 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.