[Python-checkins] CVS: python/dist/src/Misc NEWS,1.192,1.193
Fred L. Drake
fdrake@users.sourceforge.net
2001年7月20日 11:38:29 -0700
Update of /cvsroot/python/python/dist/src/Misc
In directory usw-pr-cvs1:/tmp/cvs-serv24278/Misc
Modified Files:
NEWS
Log Message:
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.
Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.192
retrieving revision 1.193
diff -C2 -r1.192 -r1.193
*** NEWS 2001年07月18日 16:17:16 1.192
--- NEWS 2001年07月20日 18:38:26 1.193
***************
*** 150,153 ****
--- 150,158 ----
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.