This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author hamzatkhan94
Recipients Sworddragon, berker.peksag, docs@python, hamzatkhan94, matrixise
Date 2016-01-04.19:22:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1451935342.74.0.422537427208.issue25496@psf.upfronthosting.co.za>
In-reply-to
Content
Here is trivial fix for this issue. This is my first patch and I hope that it gets accepted and integrated.

hamza@hamza-ub94:~/git/cpython$ grep compresslevel Lib/tarfile.py
    def gzopen(cls, name, mode="r", fileobj=None, compresslevel=9, **kwargs):
            fileobj = gzip.GzipFile(name, mode + "b", compresslevel, fileobj)
    def bz2open(cls, name, mode="r", fileobj=None, compresslevel=9, **kwargs):
                              compresslevel=compresslevel)
hamza@hamza-ub94:~/git/cpython$
History
Date User Action Args
2016-01-04 19:22:22hamzatkhan94setrecipients: + hamzatkhan94, docs@python, Sworddragon, berker.peksag, matrixise
2016-01-04 19:22:22hamzatkhan94setmessageid: <1451935342.74.0.422537427208.issue25496@psf.upfronthosting.co.za>
2016-01-04 19:22:22hamzatkhan94linkissue25496 messages
2016-01-04 19:22:22hamzatkhan94create