[Python-checkins] CVS: python/dist/src/Misc NEWS,1.379,1.380

Guido van Rossum gvanrossum@users.sourceforge.net
Fri, 05 Apr 2002 17:05:02 -0800


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

Modified Files:
	NEWS 
Log Message:
- Changed new-style class instantiation so that when C's __new__
  method returns something that's not a C instance, its __init__ is
  not called.  [SF bug #537450]



Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.379
retrieving revision 1.380
diff -C2 -d -r1.379 -r1.380
*** NEWS	6 Apr 2002 00:23:25 -0000	1.379
--- NEWS	6 Apr 2002 01:05:00 -0000	1.380
***************
*** 7,10 ****
--- 7,14 ----
  Core and builtins
  
+ - Changed new-style class instantiation so that when C's __new__
+   method returns something that's not a C instance, its __init__ is
+   not called.  [SF bug #537450]
+ 
  - Fixed super() to work correctly with class methods.  [SF bug #535444]