]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo in xreadlines() docstring. This does not apply to the trunk.
authorFred Drake <fdrake@acm.org>
Wed, 25 Sep 2002 18:06:48 +0000 (18:06 +0000)
committerFred Drake <fdrake@acm.org>
Wed, 25 Sep 2002 18:06:48 +0000 (18:06 +0000)
Closes SF bug #614542.

Objects/fileobject.c

index 3b98c8e626438617153d5e7ee8c6376167d40051..58af9ce8b28fe1cbe2e5fc5cc7afb883bc217b0f 100644 (file)
@@ -1368,7 +1368,7 @@ static char readlines_doc[] =
 static char xreadlines_doc[] =
 "xreadlines() -> next line from the file, as a string.\n"
 "\n"
-"Equivalent to xreadlines.xreadlines(file).  This is like readline(), but\n"
+"Equivalent to xreadlines.xreadlines(file).  This is like readlines(), but\n"
 "often quicker, due to reading ahead internally.";
 
 static char writelines_doc[] =