diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-04-04 19:06:20 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-04-04 19:06:20 (GMT) |
commit | e88604755c90b52858ecc17e2a3548bfed20c45f (patch) | |
tree | f5696b7c349e7c5030729b82b31059b3809371da /Doc/library/gzip.rst | |
parent | e9b2a4cb59ff0046343ce292f9c5db7e5639635c (diff) | |
download | cpython-e88604755c90b52858ecc17e2a3548bfed20c45f.zip cpython-e88604755c90b52858ecc17e2a3548bfed20c45f.tar.gz cpython-e88604755c90b52858ecc17e2a3548bfed20c45f.tar.bz2 |
Clarify that GzipFile.read1() isn't implemented.
Diffstat (limited to 'Doc/library/gzip.rst')
-rw-r--r-- | Doc/library/gzip.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/gzip.rst b/Doc/library/gzip.rst index a2fa3fa..659a027 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:`truncate` method isn't implemented. + :meth:`read1` and :meth:`truncate` methods aren't implemented. :class:`GzipFile` also provides the following method: |