Re: [Python-Dev] Copying zlib compression objects

2006-02-22 Thread Chris AtLee
On 2/17/06, Guido van Rossum [EMAIL PROTECTED] wrote: Please submit your patch to SourceForge.I've submitted the zlib patch as patch #1435422. I added some test cases to test_zlib.py and documented the new methods. I'd like to test my gzip / tarfile changes more before creating a patch for it, but

[Python-Dev] Copying zlib compression objects

2006-02-17 Thread Chris AtLee
I'm writing a program in python that creates tar files of a certain maximum size (to fit onto CD/DVD). One of the problems I'm running into is that when using compression, it's pretty much impossible to determine if a file, once added to an archive, will cause the archive size to exceed the

Re: [Python-Dev] Copying zlib compression objects

2006-02-17 Thread Guido van Rossum
Please submit your patch to SourceForge. On 2/17/06, Chris AtLee [EMAIL PROTECTED] wrote: I'm writing a program in python that creates tar files of a certain maximum size (to fit onto CD/DVD). One of the problems I'm running into is that when using compression, it's pretty much impossible