[Python-checkins] CVS: python/dist/src/Misc NEWS,1.64,1.65

Fred L. Drake python-dev@python.org
Tue, 26 Sep 2000 09:21:39 -0700


Update of /cvsroot/python/python/dist/src/Misc
In directory slayer.i.sourceforge.net:/tmp/cvs-serv13218/Misc

Modified Files:
	NEWS 
Log Message:

Elaborated the notes on the XML support.

In the limits.h comment, noted that INT_MAX and LONG_MAX are guaranteed
to be defined.

Noted that Reliant UNIX now gets proper API support for extension modules.


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.64
retrieving revision 1.65
diff -C2 -r1.64 -r1.65
*** NEWS	2000/09/26 11:16:10	1.64
--- NEWS	2000/09/26 16:21:35	1.65
***************
*** 111,115 ****
    is followed by whitespace.
  
! - StringIO: size hint in readlines() is now supported as documented. 
  
  - struct: Check ranges for bytes and shorts.
--- 111,115 ----
    is followed by whitespace.
  
! - StringIO: Size hint in readlines() is now supported as documented. 
  
  - struct: Check ranges for bytes and shorts.
***************
*** 131,141 ****
    XML package if PyXML version is greater than 0.6.1.
  
! - xml.dom: XXX
  
! - xml.sax: XXX
  
- - XXX pyexpat: XXX
  
- 
  C API
  
--- 131,148 ----
    XML package if PyXML version is greater than 0.6.1.
  
! - xml.dom: DOM level 1 support for basic XML.  Includes xml.dom.minidom
!   (conventional DOM), and xml.dom.pulldom, which allows building the DOM
!   tree only for nodes which are sufficiently interesting to a specific
!   application.  Does not provide the HTML-specific extensions.  Still
!   undocumented.
! 
! - xml.sax: SAX 2 support for Python, including all the handler
!   interfaces needed to process XML 1.0 compliant XML.  Some
!   documentation is already available.
  
! - pyexpat: Renamed to xml.parsers.expat since this is part of the new,
!   packagized XML support.
  
  
  C API
  
***************
*** 161,165 ****
  
  - The standard header <limits.h> is now included by Python.h (if it
!   exists).
  
  
--- 168,173 ----
  
  - The standard header <limits.h> is now included by Python.h (if it
!   exists).  INT_MAX and LONG_MAX will always be defined, even if
!   <limits.h> is not available.
  
  
***************
*** 189,192 ****
--- 197,203 ----
  - Improved support for HP-UX build -- threads should now be correctly
    configured (on HP-UX 10.20 and 11.00).
+ 
+ - Python/C API now properly exposed to dynamically-loaded extension
+   modules on Reliant UNIX.