From 97c5fccd773ad509f8fcf6be3708d90c4402772b Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 6 Aug 2002 17:03:25 +0000 Subject: [PATCH] Remove mention of deprecated xreadlines method. --- Doc/lib/libgzip.tex | 4 ++-- Lib/gzip.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Doc/lib/libgzip.tex b/Doc/lib/libgzip.tex index 7a526b6f6df..b4cc6594498 100644 --- a/Doc/lib/libgzip.tex +++ b/Doc/lib/libgzip.tex @@ -21,8 +21,8 @@ The module defines the following items: \begin{classdesc}{GzipFile}{\optional{filename\optional{, mode\optional{, compresslevel\optional{, fileobj}}}}} Constructor for the \class{GzipFile} class, which simulates most of -the methods of a file object, with the exception of the \method{readinto()}, -\method{truncate()}, and \method{xreadlines()} methods. At least one of +the methods of a file object, with the exception of the \method{readinto()} +and \method{truncate()} methods. At least one of \var{fileobj} and \var{filename} must be given a non-trivial value. The new class instance is based on \var{fileobj}, which can be a diff --git a/Lib/gzip.py b/Lib/gzip.py index 6838d192c2e..55d448dd1d7 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. """