[Python-checkins] python/dist/src/Objects fileobject.c,2.141.6.5,2.141.6.6

fdrake@users.sourceforge.net fdrake@users.sourceforge.net
Wed, 25 Sep 2002 11:06:51 -0700


Update of /cvsroot/python/python/dist/src/Objects
In directory usw-pr-cvs1:/tmp/cvs-serv31146

Modified Files:
      Tag: release22-maint
	fileobject.c 
Log Message:
Fix typo in xreadlines() docstring.  This does not apply to the trunk.
Closes SF bug #614542.


Index: fileobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/fileobject.c,v
retrieving revision 2.141.6.5
retrieving revision 2.141.6.6
diff -C2 -d -r2.141.6.5 -r2.141.6.6
*** fileobject.c	30 Apr 2002 03:41:53 -0000	2.141.6.5
--- fileobject.c	25 Sep 2002 18:06:48 -0000	2.141.6.6
***************
*** 1369,1373 ****
  "xreadlines() -> next line from the file, as a string.\n"
  "\n"
! "Equivalent to xreadlines.xreadlines(file).  This is like readline(), but\n"
  "often quicker, due to reading ahead internally.";
  
--- 1369,1373 ----
  "xreadlines() -> next line from the file, as a string.\n"
  "\n"
! "Equivalent to xreadlines.xreadlines(file).  This is like readlines(), but\n"
  "often quicker, due to reading ahead internally.";