[Python-checkins] CVS: python/dist/src/Misc NEWS,1.337,1.337.2.1

Guido van Rossum gvanrossum@users.sourceforge.net
Thu, 20 Dec 2001 21:45:47 -0800


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

Modified Files:
      Tag: release22-branch
	NEWS 
Log Message:
Note visible changes in 2.2 since 2.2c1.


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.337
retrieving revision 1.337.2.1
diff -C2 -d -r1.337 -r1.337.2.1
*** NEWS	2001/12/14 23:16:18	1.337
--- NEWS	2001/12/21 05:45:45	1.337.2.1
***************
*** 5,14 ****
--- 5,34 ----
  Type/class unification and new-style classes
  
+ - pickle.py, cPickle: allow pickling instances of new-style classes
+   with a custom metaclass.
+ 
  Core and builtins
  
+ - weakref proxy object: when comparing, unwrap both arguments if both
+   are proxies.
+ 
  Extension modules
  
+ - binascii.b2a_base64(): fix a potential buffer overrun when encoding
+   very short strings.
+ 
  Library
  
+ - dumbdbm.py: fixed a dumb old bug (the file didn't get synched at
+   close or delete time).
+ 
+ - rfc822.py: fixed a bug where the address '<>' was converted to None
+   instead of an empty string.
+ 
+ - xmlrpclib.py: version 1.0.0; uses precision for doubles.
+ 
+ - test suite: the pickle and cPickle tests were not executing any code
+   when run from the standard regresssion test.
+ 
  Tools/Demos
  
***************
*** 22,25 ****
--- 42,56 ----
  
  Windows
+ 
+ - distutils package: fixed broken Windows installers (bdist_wininst).
+ 
+ - tempfile.py: prevent mysterious warnings when TemporaryFileWrapper
+   instances are deleted at process exit time.
+ 
+ - socket.py: prevent mysterious warnings when socket instances are
+   deleted at process exit time.
+ 
+ - posixmodule.c: fix a Windows crash with stat() of a filename ending
+   in backslash.
  
  Mac