summaryrefslogtreecommitdiffstats
path: root/Doc/library/gzip.rst
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-09-23 16:22:51 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-09-23 16:22:51 (GMT)
commit7b9698435d890b2df5107a6a3efedc1aebc178a3 (patch)
tree8552eb6b9fa4cf0861e8252cb3fe92be82011d1d /Doc/library/gzip.rst
parentdda7fdf1947453dc4c7b167c75b111b81e4b881e (diff)
downloadcpython-7b9698435d890b2df5107a6a3efedc1aebc178a3.zip
cpython-7b9698435d890b2df5107a6a3efedc1aebc178a3.tar.gz
cpython-7b9698435d890b2df5107a6a3efedc1aebc178a3.tar.bz2
Issue #1675951: Allow GzipFile to work with unseekable file objects.
Patch by Florian Festi.
Diffstat (limited to 'Doc/library/gzip.rst')
-rw-r--r--Doc/library/gzip.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/gzip.rst b/Doc/library/gzip.rst
index edd5587..934fcb3 100644
--- a/Doc/library/gzip.rst
+++ b/Doc/library/gzip.rst
@@ -74,6 +74,9 @@ The module defines the following items:
.. versionchanged:: 3.2
Support for zero-padded files was added.
+ .. versionchanged:: 3.2
+ Support for unseekable files was added.
+
.. function:: open(filename, mode='rb', compresslevel=9)