[Python-checkins] python/dist/src/Misc NEWS,1.432,1.433

gvanrossum@users.sourceforge.net gvanrossum@users.sourceforge.net
Thu, 20 Jun 2002 18:29:27 -0700


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

Modified Files:
	NEWS 
Log Message:
Mention private vars in __slots__.


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.432
retrieving revision 1.433
diff -C2 -d -r1.432 -r1.433
*** NEWS	18 Jun 2002 21:20:13 -0000	1.432
--- NEWS	21 Jun 2002 01:29:25 -0000	1.433
***************
*** 7,10 ****
--- 7,13 ----
  Core and builtins
  
+ - The __slots__ variable can now mention "private" names, and the
+   right thing will happen (e.g. __slots__ = ["__foo"]).
+ 
  - Unicode objects in sys.path are no longer ignored but treated
    as directory names.