alonwas <[EMAIL PROTECTED]> added the comment:

Hi Antoine,
The problem happens for files between 2GB and 4GB. I can't really send
you a link to such a big file. To reproduce the problem, you can
generate one. I created (and attach) a tiny C program that helps
generate one. If you want to, you can run it, save its output to a file
and then add it to a zip file (it should compress around 12%). The
resulting zip file will fail to open from python using the zipfile
package because of the bug I mentioned. Please let me know whether this
is enough information to reproduce,
Thanks,
Alon

On Mon, 2008-08-11 at 17:30 +0000, Antoine Pitrou wrote:
> Antoine Pitrou <[EMAIL PROTECTED]> added the comment:
> 
> Do you have a public URL for such a zip file?
> 
> ----------
> nosy: +pitrou
> 
> _______________________________________
> Python tracker <[EMAIL PROTECTED]>
> <http://bugs.python.org/issue3535>
> _______________________________________

Added file: http://bugs.python.org/file11105/large.c

_______________________________________
Python tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue3535>
_______________________________________
#include <stdio.h>
main()
{
	unsigned long size=3500000000UL;
	unsigned long i;

	for (i=0; i<size; i++)
		putchar(abs(lrand48())%128);
}
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to