[Python-checkins] CVS: python/dist/src/Misc NEWS,1.295,1.296

Fred L. Drake fdrake@users.sourceforge.net
Mon, 22 Oct 2001 11:41:54 -0700


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

Modified Files:
	NEWS 
Log Message:
Added two very tardy notes about the 2.2b1 release, fixed a typo.

Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.295
retrieving revision 1.296
diff -C2 -d -r1.295 -r1.296
*** NEWS	2001/10/22 16:37:10	1.295
--- NEWS	2001/10/22 18:41:51	1.296
***************
*** 71,75 ****
    example).
  
! - Weak reference objects are now part of the core and offers a C API.
    A bug which could allow a core dump when binary operations involved
    proxy reference has been fixed.  weakref.ReferenceError is now a
--- 71,75 ----
    example).
  
! - Weak reference objects are now part of the core and offer a C API.
    A bug which could allow a core dump when binary operations involved
    proxy reference has been fixed.  weakref.ReferenceError is now a
***************
*** 131,134 ****
--- 131,139 ----
    being tested, thanks to Tim Hochberg.
  
+ - HotShot, a new profiler implemented using a C-based callback, has
+   been added.  This substantially reduces the overhead of profiling,
+   but it is still quite preliminary.  Support modules and
+   documentation will be added in upcoming releases (before 2.2 final).
+ 
  - profile now produces correct output in situations where an exception
    raised in Python is cleared by C code (e.g. hasattr()).  This used
***************
*** 177,180 ****
--- 182,188 ----
  - ConfigParser.getboolean() now also interprets TRUE, FALSE, YES, NO,
    ON, and OFF.
+ 
+ - xml.dom.minidom NodeList objects now support the length attribute
+   and item() method as required by the DOM specifications.
  
  Tools/Demos