[Python-checkins] python/dist/src/Misc NEWS,1.479,1.480

nnorwitz@users.sourceforge.net nnorwitz@users.sourceforge.net
Thu, 05 Sep 2002 14:48:09 -0700


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

Modified Files:
	NEWS 
Log Message:
SF bug # 585792, Invalid mmap crashes Python interpreter

Raise ValueError if user passes a size to mmap which is larger
than the file.


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.479
retrieving revision 1.480
diff -C2 -d -r1.479 -r1.480
*** NEWS	5 Sep 2002 21:42:24 -0000	1.479
--- NEWS	5 Sep 2002 21:48:07 -0000	1.480
***************
*** 275,278 ****
--- 275,281 ----
  Extension modules
  
+ - If the size passed to mmap.mmap() is larger than the length of the
+   file on non-Windows platforms, a ValueError is raised. [SF bug 585792]
+ 
  - The xreadlines module is slated for obsolescence.