[Python-checkins] python/dist/src/Misc NEWS,1.813,1.814

akuchling@users.sourceforge.net akuchling@users.sourceforge.net
Wed, 16 Jul 2003 13:11:36 -0700


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

Modified Files:
	NEWS 
Log Message:
Add mmap bugfix; typo and grammar fixes

Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.813
retrieving revision 1.814
diff -C2 -d -r1.813 -r1.814
*** NEWS	16 Jul 2003 19:25:22 -0000	1.813
--- NEWS	16 Jul 2003 20:11:34 -0000	1.814
***************
*** 33,36 ****
--- 33,38 ----
  - SSL no longer crashes the interpreter when the remote side disconnects.
  
+ - On Unix the mmap module can again be used to map device files.
+ 
  - time.strptime now exclusively uses the Python implementation
    contained within the _strptime module.
***************
*** 142,146 ****
    tuple.  By default, the iterators now access data elements directly
    instead of going through __getitem__.  If __getitem__ access is
!   preferred, then __iter__ can be overriden.
  
  - Creating an attribute on a module (i.e. a global variable created by
--- 144,148 ----
    tuple.  By default, the iterators now access data elements directly
    instead of going through __getitem__.  If __getitem__ access is
!   preferred, then __iter__ can be overridden.
  
  - Creating an attribute on a module (i.e. a global variable created by
***************
*** 291,295 ****
  -----
  
! - Setting DESTDIR during 'make install' now allows to specify a
    different root directory.
  
--- 293,297 ----
  -----
  
! - Setting DESTDIR during 'make install' now allows specifying a
    different root directory.
  
***************
*** 490,494 ****
    #705836.
  
! - New function time.tzset() provides access to the C library tzet()
    function, if supported.  (SF patch #675422.)
  
--- 492,496 ----
    #705836.
  
! - New function time.tzset() provides access to the C library tzset()
    function, if supported.  (SF patch #675422.)