[Python-checkins] python/dist/src/Doc/lib libstringio.tex,1.9,1.10

rhettinger at users.sourceforge.net rhettinger at users.sourceforge.net
Mon Apr 11 03:03:47 CEST 2005


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19861

Modified Files:
	libstringio.tex 
Log Message:
SF bug #1180392: StringIO's docs should mention overwriting of initial value

* Added a note that the initial file position is zero even if the object
  is freshly initialized.



Index: libstringio.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libstringio.tex,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- libstringio.tex	8 Jan 2004 15:01:08 -0000	1.9
+++ libstringio.tex	11 Apr 2005 01:03:44 -0000	1.10
@@ -14,6 +14,7 @@
 When a \class{StringIO} object is created, it can be initialized
 to an existing string by passing the string to the constructor.
 If no string is given, the \class{StringIO} will start empty.
+In both cases, the initial file position starts at zero.
 
 The \class{StringIO} object can accept either Unicode or 8-bit
 strings, but mixing the two may take some care.  If both are used,



More information about the Python-checkins mailing list