[Python-checkins] CVS: python/dist/src/Misc NEWS,1.145,1.146

Guido van Rossum gvanrossum@users.sourceforge.net
Mon, 16 Apr 2001 11:46:48 -0700


Update of /cvsroot/python/python/dist/src/Misc
In directory usw-pr-cvs1:/tmp/cvs-serv11744

Modified Files:
	NEWS 
Log Message:
Noted what's new in 2.1 (final).

Hopefully this is the last checkin for 2.1!


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.145
retrieving revision 1.146
diff -C2 -r1.145 -r1.146
*** NEWS	2001/04/16 02:05:23	1.145
--- NEWS	2001/04/16 18:46:45	1.146
***************
*** 1,2 ****
--- 1,23 ----
+ What's New in Python 2.1 (final)?
+ =================================
+ 
+ We only changed a few things since the last release candidate, all in
+ Python library code:
+ 
+ - A bug in the locale module was fixed that affected locales which
+   define no grouping for numeric formatting.
+ 
+ - A few bugs in the weakref module's implementations of weak
+   dictionaries (WeakValueDictionary and WeakKeyDictionary) were fixed,
+   and the test suite was updated to check for these bugs.
+ 
+ - An old bug in the os.path.walk() function (introduced in Python
+   2.0!) was fixed: a non-existent file would cause an exception
+   instead of being ignored.
+ 
+ - Fixed a few bugs in the new symtable module found by Neil Norwitz's
+   PyChecker.
+ 
+ 
  What's New in Python 2.1c2?
  ===========================