summaryrefslogtreecommitdiff
path: root/Doc/library/gzip.rst
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2011-07-04 11:31:53 -0700
committerSenthil Kumaran <senthil@uthcode.com>2011-07-04 11:31:53 -0700
commitf587d4d9948b388a440c4b4ced069345ea0b05b1 (patch)
tree78812ada9000f9b6ba505e0d9c7d16834fd46d4f /Doc/library/gzip.rst
parent5f0e3a42ecde1c7a70cc8f8bca9f968937631186 (diff)
parent5cb4efc23896173e283b5ed627a68da2eb57130d (diff)
downloadcpython-f587d4d9948b388a440c4b4ced069345ea0b05b1.tar.gz
Merge from 3.2 . Replace the term members with correct and appropriate terminology. Initial patch by Adam Woodbeck.
Diffstat (limited to 'Doc/library/gzip.rst')
-rw-r--r--Doc/library/gzip.rst5
1 files changed, 4 insertions, 1 deletions
diff --git a/Doc/library/gzip.rst b/Doc/library/gzip.rst
index 48a86942fc..a5e08c9d8f 100644
--- a/Doc/library/gzip.rst
+++ b/Doc/library/gzip.rst
@@ -72,7 +72,7 @@ The module defines the following items:
:class:`GzipFile` supports the :class:`io.BufferedIOBase` interface,
including iteration and the :keyword:`with` statement. Only the
- :meth:`read1` and :meth:`truncate` methods aren't implemented.
+ :meth:`truncate` method isn't implemented.
:class:`GzipFile` also provides the following method:
@@ -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)