[Python-checkins] python/dist/src/Misc NEWS,1.823,1.824

theller@users.sourceforge.net theller@users.sourceforge.net
Tue, 22 Jul 2003 11:10:11 -0700


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

Modified Files:
	NEWS 
Log Message:
Change the zipimport implementation to accept files containing
arbitrary bytes before the actual zip compatible archive.  Zipfiles
containing comments at the end of the file are still not supported.

Add a testcase to test_zipimport, and update NEWS.

This closes sf #775637 and sf #669036.


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.823
retrieving revision 1.824
diff -C2 -d -r1.823 -r1.824
*** NEWS	22 Jul 2003 02:50:01 -0000	1.823
--- NEWS	22 Jul 2003 18:10:09 -0000	1.824
***************
*** 13,16 ****
--- 13,20 ----
  -----------------
  
+ - It is now possible to import from zipfiles containing additional
+   data bytes before the zip compatible archive. Zipfiles containing a
+   comment at the end are still unsupported.
+ 
  Extension modules
  -----------------