summaryrefslogtreecommitdiff
path: root/Lib/StringIO.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #11311: StringIO.readline(0) now returns an empty string as all otherSerhiy Storchaka2013-02-131-1/+1
* raise an ValueError in getvalue() on closed StringIO (closes #12161)Benjamin Peterson2011-05-261-0/+1
* make StringIO like other file objects in that readline(-1) has no effect #7348Benjamin Peterson2009-12-131-1/+1
* Fix a py3k warning in the StringIO module (exhibited in test_codecencodings_cn)Antoine Pitrou2009-10-141-1/+1
* [Bug #1622533] Make docstrings raw strings because they contain control chara...Andrew M. Kuchling2007-01-051-1/+1
* SF patch #1359365: file and cStringIO raise a ValueError when next() is calledWalter Dörwald2006-03-151-2/+1
* SF bug #951915: fix bug in StringIO.truncate - length not changedRaymond Hettinger2004-12-201-0/+6
* Arghh, checked in wrong draft. Replacing with correct one.Raymond Hettinger2004-09-231-3/+4
* Use local variables in StringIO.write().Raymond Hettinger2004-09-231-10/+11
* Add missing docstrings.Raymond Hettinger2004-03-141-0/+67
* SF patch #907403: Improvements to cStringIO.writelines()Raymond Hettinger2004-03-081-2/+4
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-2/+2
* Whitespace normalization.Tim Peters2004-01-181-1/+1
* Make the module docstring a raw string, so that the backslash inWalter Dörwald2003-12-151-1/+1
* Patch #822994: Consolidate tests for self.closed.Martin v. Löwis2003-10-181-18/+14
* Make StringIO its own iterator, similar to real files.Guido van Rossum2003-01-311-1/+9
* write(): Special case the common situation of a stream that's onlyFred Drake2002-09-171-0/+4
* Remove uses of the string and types modules:Walter Dörwald2002-06-031-3/+2
* Whitespace normalization.Tim Peters2002-05-231-6/+6
* Added docstrings excerpted from Python Library Reference.Raymond Hettinger2002-05-151-0/+23
* Make StringIO work in --disable-unicode builds...Michael W. Hudson2002-05-131-2/+2
* Use isinstance() in preference to comparison of type by is.Jeremy Hylton2002-05-101-2/+2
* Partial introduction of bools where appropriate.Guido van Rossum2002-04-071-1/+1
* SF #515000, print result of f.tell() in test() instead of ignoringNeal Norwitz2002-02-111-1/+1
* Restore Python 2.1 StringIO.py behaviour: support concatenatingMarc-André Lemburg2002-01-061-5/+8
* StringIO patch #462596: let's [c]StringIO accept read buffers onMarc-André Lemburg2001-09-241-1/+4
* __iter__(): New method so that StringIO's can participate in theBarry Warsaw2001-09-221-0/+3
* Remove silly EMPTYSTRING global. Saves a global lookup.Marc-André Lemburg2001-02-091-8/+6
* added __all__ lists to a number of Python modulesSkip Montanaro2001-01-201-0/+2
* Untabify! (Barry, this is gonna cost you a bottle of wine! ;)Fred Drake2000-12-131-105/+105
* Change the file's indentation from tabs to 4 spaces per level.Barry Warsaw2000-12-121-151/+163
* Accept Finn Bock's patch #102208 to hardcode EINVAL to 22 when errnoBarry Warsaw2000-12-121-13/+16
* [ Bug #116636 ] Bug in StringIO.write()Guido van Rossum2000-10-121-0/+2
* Add truncate() method to StringIO objects.Fred Drake2000-09-281-0/+13
* Support sizehint in StringIO.readlines, as documented.Martin v. Löwis2000-09-191-1/+5
* Simple changes by Gerrit Holl - move author acknowledgements out ofGuido van Rossum2000-02-281-0/+2
* Mass patch by Ka-Ping Yee:Guido van Rossum2000-02-021-27/+27
* Raise the right exception (ValueError) for attempted I/O on closed StringIOFred Drake1998-08-181-1/+14
* Patch by Lars Wirzenius to allow f.readline(length).Guido van Rossum1997-07-251-1/+4
* Sjoerd's StringIO speed-upGuido van Rossum1996-06-191-7/+30
* fix default arg for read() -- should be -1Guido van Rossum1996-01-251-2/+2
* Added flush() method.Sjoerd Mullender1995-07-191-0/+2
* set softspace to 0 in __init__Guido van Rossum1995-06-221-0/+1
* Two new generally useful modules: types defines names for all built-in types,Guido van Rossum1994-06-231-0/+130