[Python-checkins] python/dist/src/Misc NEWS,1.544,1.545

mwh@users.sourceforge.net mwh@users.sourceforge.net
Tue, 26 Nov 2002 06:48:25 -0800


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

Modified Files:
	NEWS 
Log Message:
This is not part of my patch

[ 635933 ] make some type attrs writable

but should have been!

News about the above.


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.544
retrieving revision 1.545
diff -C2 -d -r1.544 -r1.545
*** NEWS	26 Nov 2002 12:31:09 -0000	1.544
--- NEWS	26 Nov 2002 14:48:23 -0000	1.545
***************
*** 13,16 ****
--- 13,18 ----
  --------------------------------------------
  
+ - One can now assign to __bases__ and __name__ of new-style classes.
+ 
  - dict() now accepts keyword arguments so that dict(one=1, two=2)
    is the equivalent of {"one": 1, "two": 2}.  Accordingly,