[issue3488] Provide compress/uncompress functions on the gzip module

2010-10-01 Thread Anand B Pillai
Anand B Pillai added the comment: Okay. Verified as working. Thank you! -- ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue3488] Provide compress/uncompress functions on the gzip module

2010-08-17 Thread Antoine Pitrou
Antoine Pitrou added the comment: Modified patch committed in r84155 (py3k). Thanks for your contribution! -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker

[issue3488] Provide compress/uncompress functions on the gzip module

2010-07-18 Thread Mark Lawrence
Mark Lawrence added the comment: This appears to have slipped under the radar, msg94432 seems to sum it up. Could someone please take this forward. -- nosy: +BreamoreBoy ___ Python tracker ___

[issue3488] Provide compress/uncompress functions on the gzip module

2009-11-07 Thread Anand B Pillai
Anand B Pillai added the comment: Uploading rst documentation svn diff for module. -- Added file: http://bugs.python.org/file15283/gzip.rst.svndiff ___ Python tracker ___ ___

[issue3488] Provide compress/uncompress functions on the gzip module

2009-11-07 Thread Anand B Pillai
Anand B Pillai added the comment: Uploading fresh gzip.py SVN diff with a minor change, i.e accepting a regular string as argument, aka zlib.compress. -- Added file: http://bugs.python.org/file15282/gzip.py.svndiff ___ Python tracker

[issue3488] Provide compress/uncompress functions on the gzip module

2009-11-07 Thread Anand B Pillai
Changes by Anand B Pillai : Removed file: http://bugs.python.org/file11050/gzip_svn_diff.patch ___ Python tracker ___ ___ Python-bugs-list mail

[issue3488] Provide compress/uncompress functions on the gzip module

2009-11-07 Thread Anand B Pillai
Changes by Anand B Pillai : Removed file: http://bugs.python.org/file11044/gzip.patch ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue3488] Provide compress/uncompress functions on the gzip module

2009-11-07 Thread Anand B Pillai
Changes by Anand B Pillai : Removed file: http://bugs.python.org/file11035/gzip_patch.py ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue3488] Provide compress/uncompress functions on the gzip module

2009-10-29 Thread Anand B Pillai
Anand B Pillai added the comment: Ok, I will add this. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:

[issue3488] Provide compress/uncompress functions on the gzip module

2009-10-29 Thread Antoine Pitrou
Antoine Pitrou added the comment: The patch lacks a documentation update, though. (see Doc/library/gzip.rst) -- ___ Python tracker ___ ___

[issue3488] Provide compress/uncompress functions on the gzip module

2009-10-24 Thread Gregory P. Smith
Gregory P. Smith added the comment: Seems simple enough, I don't see why not. -- nosy: +gregory.p.smith ___ Python tracker ___ ___ Pyt

[issue3488] Provide compress/uncompress functions on the gzip module

2009-10-23 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- priority: -> normal stage: -> patch review versions: +Python 3.2 -Python 3.0 ___ Python tracker ___ __

[issue3488] Provide compress/uncompress functions on the gzip module

2009-10-23 Thread Anand B Pillai
Anand B Pillai added the comment: Can we include this for the next release ? -- ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue3488] Provide compress/uncompress functions on the gzip module

2008-08-13 Thread Jesús Cea Avión
Changes by Jesús Cea Avión <[EMAIL PROTECTED]>: -- nosy: +jcea ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-bugs-list mailing l

[issue3488] Provide compress/uncompress functions on the gzip module

2008-08-03 Thread Anand B Pillai
Anand B Pillai <[EMAIL PROTECTED]> added the comment: Added test case in test_gzip.py. Attaching svn diff of the same. Added file: http://bugs.python.org/file11052/test_gzip_svn_diff.patch ___ Python tracker <[EMAIL PROTECTED]>

[issue3488] Provide compress/uncompress functions on the gzip module

2008-08-03 Thread Anand B Pillai
Anand B Pillai <[EMAIL PROTECTED]> added the comment: Uploading the svn diff. Added file: http://bugs.python.org/file11050/gzip_svn_diff.patch ___ Python tracker <[EMAIL PROTECTED]> ___ __

[issue3488] Provide compress/uncompress functions on the gzip module

2008-08-03 Thread Anand B Pillai
Anand B Pillai <[EMAIL PROTECTED]> added the comment: I have uploaded the actual patch file which can be applied against the gzip.py module. I did not modify the _test() function since it is written for testing file compression. I can modify test_gzip.py if this patch is accepted. -- key

[issue3488] Provide compress/uncompress functions on the gzip module

2008-08-02 Thread Anand B Pillai
Anand B Pillai <[EMAIL PROTECTED]> added the comment: Thanks. The file I uploaded was not an actual patch but just how the functions would appear in the gzip module, to illustrate the code. I can make an actual patch to gzip.py with docstrings, unit-tests and taking care of your other comments.

[issue3488] Provide compress/uncompress functions on the gzip module

2008-08-02 Thread Antoine Pitrou
Antoine Pitrou <[EMAIL PROTECTED]> added the comment: I think the functionality is useful, although it may be too late to make it into 2.6/3.0. Some comments: - the functions should have docstrings - there should be unit tests - style nit: named parameters in function calls (and default values in

[issue3488] Provide compress/uncompress functions on the gzip module

2008-08-01 Thread Anand B Pillai
Anand B Pillai <[EMAIL PROTECTED]> added the comment: Uploading a file containing two functions which can be used to provide compress/uncompress on gzip. This is not a patch to gzip.py, but a stand-alone file. It this looks fine, I will make a patch. Added file: http://bugs.python.org/file11035

[issue3488] Provide compress/uncompress functions on the gzip module

2008-08-01 Thread Anand B Pillai
New submission from Anand B Pillai <[EMAIL PROTECTED]>: Python has great in-built support for all sorts of text compression including bzip, gzip, tarfile and other general purpose modules like zlib etc. Of these, I have a gripe with gzip - it does not provide a simple way of compressing/uncompre