]> granicus.if.org Git - python/commitdiff
Remove mention of deprecated xreadlines method.
authorGuido van Rossum <guido@python.org>
Tue, 6 Aug 2002 17:03:25 +0000 (17:03 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 6 Aug 2002 17:03:25 +0000 (17:03 +0000)
Doc/lib/libgzip.tex
Lib/gzip.py

index 7a526b6f6dfaeaedb935fdc836c7cdcd863d973d..b4cc6594498339e2adb1c8ec5712170b47114165 100644 (file)
@@ -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
index 6838d192c2e2d2a5a351da6190fdd526cd6892e7..55d448dd1d7905c29f485eed62025612cf7b3afd 100644 (file)
@@ -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.
 
     """