diff options
author | Guido van Rossum <guido@python.org> | 2002-08-06 17:03:25 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2002-08-06 17:03:25 (GMT) |
commit | 97c5fccd773ad509f8fcf6be3708d90c4402772b (patch) | |
tree | 53725bb2cd1869949edb2b6bcd231929e611851c /Lib/gzip.py | |
parent | d79f683772aa2222e4189f394fe7086d77b201c5 (diff) | |
download | cpython-97c5fccd773ad509f8fcf6be3708d90c4402772b.zip cpython-97c5fccd773ad509f8fcf6be3708d90c4402772b.tar.gz cpython-97c5fccd773ad509f8fcf6be3708d90c4402772b.tar.bz2 |
Remove mention of deprecated xreadlines method.
Diffstat (limited to 'Lib/gzip.py')
-rw-r--r-- | Lib/gzip.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/gzip.py b/Lib/gzip.py index 6838d19..55d448d 100644 --- a/Lib/gzip.py +++ b/Lib/gzip.py @@ -37,7 +37,7 @@ def open(filename, mode="rb", compresslevel=9): class GzipFile: """The GzipFile class simulates most of the methods of a file object with - the exception of the readinto(), truncate(), and xreadlines() methods. + the exception of the readinto() and truncate() methods. """ |