Issue 19222: Add 'x' mode to gzip.open() (original) (raw)

Issue19222

Created on 2013-10-10 21:32 by oylenshpeegul, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
patch.gzip.py oylenshpeegul,2013-10-10 21:32 Patch to allow option 'x' for the mode.
Messages (2)
msg199416 - (view) Author: Tim Heaney (oylenshpeegul) Date: 2013-10-10 21:32
This is analogous to , but for gzip. Recent versions of Python have an 'x' mode for open, but gzip doesn't support it. It looks like everything is passed to builtins.open eventually, so if we just allow the 'x' option to pass through, all will be well.
msg200314 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-10-18 22:11
New changeset a728a7d46553 by Nadeem Vawda in branch 'default': Issue #19222: Add support for the 'x' mode to the gzip module. http://hg.python.org/cpython/rev/a728a7d46553
History
Date User Action Args
2022-04-11 14:57:51 admin set github: 63421
2013-10-18 22:12:44 nadeem.vawda set status: open -> closednosy: + nadeem.vawdaassignee: nadeem.vawdaresolution: fixedstage: patch review -> resolved
2013-10-18 22:11:38 python-dev set nosy: + python-devmessages: +
2013-10-12 08:33:54 Arfrever set title: gzip and 'x' mode open -> Add 'x' mode to gzip.open()stage: patch reviewcomponents: + Library (Lib)versions: - Python 3.3
2013-10-11 07:42:01 Arfrever set nosy: + Arfrever
2013-10-10 21:32:12 oylenshpeegul create