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 skrah
Recipients martin.panter, python-dev, serhiy.storchaka, skrah, vstinner, wolma
Date 2015-03-23.14:08:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1427119685.87.0.476962515944.issue23688@psf.upfronthosting.co.za>
In-reply-to
Content
Sure:

import gzip
x = memoryview(b'x' * 10)
y = x[::-1]
with gzip.GzipFile("xxxxx", 'w') as f:
    f.write(y)
History
Date User Action Args
2015-03-23 14:08:05skrahsetrecipients: + skrah, vstinner, python-dev, martin.panter, serhiy.storchaka, wolma
2015-03-23 14:08:05skrahsetmessageid: <1427119685.87.0.476962515944.issue23688@psf.upfronthosting.co.za>
2015-03-23 14:08:05skrahlinkissue23688 messages
2015-03-23 14:08:05skrahcreate