diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-04-04 19:09:05 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-04-04 19:09:05 (GMT) |
commit | 6b4be36cfde25ab6b7ed4a5caf737d603efdfb0f (patch) | |
tree | e87f332510a9ba3ee2d48671f8eb8756bc73471a /Doc/library/gzip.rst | |
parent | 4ec4b0c041f1045202024d0cc26c0c0767091fd0 (diff) | |
parent | e88604755c90b52858ecc17e2a3548bfed20c45f (diff) | |
download | cpython-6b4be36cfde25ab6b7ed4a5caf737d603efdfb0f.zip cpython-6b4be36cfde25ab6b7ed4a5caf737d603efdfb0f.tar.gz cpython-6b4be36cfde25ab6b7ed4a5caf737d603efdfb0f.tar.bz2 |
Clarify that GzipFile.read1() is now implemented
Diffstat (limited to 'Doc/library/gzip.rst')
-rw-r--r-- | Doc/library/gzip.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/gzip.rst b/Doc/library/gzip.rst index a2fa3fa..59ea9d3 100644 --- a/Doc/library/gzip.rst +++ b/Doc/library/gzip.rst @@ -94,6 +94,9 @@ The module defines the following items: .. versionchanged:: 3.2 Support for unseekable files was added. + .. versionchanged:: 3.3 + The :meth:`io.BufferedIOBase.read1` method is now implemented. + .. function:: open(filename, mode='rb', compresslevel=9) |