[Python-checkins] CVS: python/dist/src/Misc NEWS,1.267,1.268

Tim Peters tim_one@users.sourceforge.net
Wed, 03 Oct 2001 23:43:14 -0700


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

Modified Files:
	NEWS 
Log Message:
Added a little type/class NEWS.


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.267
retrieving revision 1.268
diff -C2 -d -r1.267 -r1.268
*** NEWS	2001/10/02 23:15:37	1.267
--- NEWS	2001/10/04 06:43:12	1.268
***************
*** 5,8 ****
--- 5,14 ----
  Type/class unification and new-style classes
  
+ - C.__doc__ now works as expected for new-style classes (in 2.2a4 it
+   always returned None, even when there was a class docstring).
+ 
+ - doctest now finds and runs docstrings attached to new-style classes,
+   class methods, static methods, and properties.
+ 
  Core