From: Fred Drake Date: Wed, 25 Sep 2002 18:06:48 +0000 (+0000) Subject: Fix typo in xreadlines() docstring. This does not apply to the trunk. X-Git-Tag: v2.2.2b1~110 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9622dd5e21ac184f14354287e4a3f52069398da7;p=thirdparty%2FPython%2Fcpython.git Fix typo in xreadlines() docstring. This does not apply to the trunk. Closes SF bug #614542. --- diff --git a/Objects/fileobject.c b/Objects/fileobject.c index 3b98c8e62643..58af9ce8b28f 100644 --- a/Objects/fileobject.c +++ b/Objects/fileobject.c @@ -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[] =