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 palaviv
Recipients nadeem.vawda, palaviv, twouters
Date 2016-01-30.18:41:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1454179267.96.0.292283649228.issue26243@psf.upfronthosting.co.za>
In-reply-to
Content
Currently zlib.compress allow only positional arguments. For code readability reasons i think that we should allow the level argument to be keyword argument. Now when someone uses zlib.compress he will be able to do zlib.compess(some_data, level=7) instead of zlib.compress(some_data, 7).

There is a patch included with the change.
History
Date User Action Args
2016-01-30 18:41:08palavivsetrecipients: + palaviv, twouters, nadeem.vawda
2016-01-30 18:41:07palavivsetmessageid: <1454179267.96.0.292283649228.issue26243@psf.upfronthosting.co.za>
2016-01-30 18:41:07palavivlinkissue26243 messages
2016-01-30 18:41:07palavivcreate