index
:
platform_external_python_cpython2
android10-c2f2-release
android10-c2f2-s1-release
android10-c2f2-s2-release
android10-d4-release
android10-d4-s1-release
android10-dev
android10-gsi
android10-mainline-a-release
android10-mainline-media-release
android10-mainline-networking-release
android10-mainline-release
android10-mainline-resolv-release
android10-mainline-tzdata-release
android10-qpr1-b-release
android10-qpr1-b-s1-release
android10-qpr1-c-release
android10-qpr1-c-s1-release
android10-qpr1-d-release
android10-qpr1-mainline-release
android10-qpr1-release
android10-qpr2-release
android10-qpr2-s1-release
android10-qpr2-s2-release
android10-qpr2-s3-release
android10-qpr2-s4-release
android10-qpr3-release
android10-qpr3-s1-release
android10-release
android10-s1-release
android10-s2-release
android10-s3-release
android10-security-release
android10-tests-release
android11-dev
android11-gsi
android11-mainline-release
android11-release
android11-tests-release
build-tools-release
master
master-cuttlefish-testing-release
ndk-sysroot-r21
o-mr1-iot-preview-7
o-mr1-iot-preview-8
oreo-dr1-dev
oreo-dr1-release
oreo-dr2-release
oreo-dr3-release
oreo-m2-release
oreo-m2-s1-release
oreo-m2-s2-release
oreo-m2-s3-release
oreo-m2-s4-release
oreo-m2-s5-release
oreo-m3-release
oreo-m4-s1-release
oreo-m4-s10-release
oreo-m4-s11-release
oreo-m4-s12-release
oreo-m4-s2-release
oreo-m4-s3-release
oreo-m4-s4-release
oreo-m4-s5-release
oreo-m4-s6-release
oreo-m4-s7-release
oreo-m4-s8-release
oreo-m4-s9-release
oreo-m5-release
oreo-m6-s2-release
oreo-m6-s3-release
oreo-m6-s4-release
oreo-m7-release
oreo-m8-release
oreo-mr1-1.2-iot-release
oreo-mr1-cts-release
oreo-mr1-cuttlefish-testing
oreo-mr1-dev
oreo-mr1-iot-release
oreo-mr1-release
oreo-mr1-s1-release
oreo-mr1-security-release
oreo-mr1-vts-release
oreo-mr1-wear-release
pie-b4s4-dev
pie-b4s4-release
pie-cts-release
pie-cuttlefish-testing
pie-dev
pie-dr1-dev
pie-dr1-release
pie-gsi
pie-platform-release
pie-qpr1-release
pie-qpr1-s1-release
pie-qpr1-s2-release
pie-qpr1-s3-release
pie-qpr2-release
pie-qpr3-b-release
pie-qpr3-release
pie-qpr3-s1-release
pie-r2-release
pie-r2-s1-release
pie-r2-s2-release
pie-release
pie-release-2
pie-s2-release
pie-security-release
pie-vts-dev
pie-vts-release
sdk-release
security-oc-mr1-release
security-pi-release
simpleperf-release
upstream-2.7
Unnamed repository; edit this file 'description' to name the repository.
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
StringIO.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
Issue #11311: StringIO.readline(0) now returns an empty string as all other
Serhiy Storchaka
2013-02-13
1
-1
/
+1
*
raise an ValueError in getvalue() on closed StringIO (closes #12161)
Benjamin Peterson
2011-05-26
1
-0
/
+1
*
make StringIO like other file objects in that readline(-1) has no effect #7348
Benjamin Peterson
2009-12-13
1
-1
/
+1
*
Fix a py3k warning in the StringIO module (exhibited in test_codecencodings_cn)
Antoine Pitrou
2009-10-14
1
-1
/
+1
*
[Bug #1622533] Make docstrings raw strings because they contain control chara...
Andrew M. Kuchling
2007-01-05
1
-1
/
+1
*
SF patch #1359365: file and cStringIO raise a ValueError when next() is called
Walter Dörwald
2006-03-15
1
-2
/
+1
*
SF bug #951915: fix bug in StringIO.truncate - length not changed
Raymond Hettinger
2004-12-20
1
-0
/
+6
*
Arghh, checked in wrong draft. Replacing with correct one.
Raymond Hettinger
2004-09-23
1
-3
/
+4
*
Use local variables in StringIO.write().
Raymond Hettinger
2004-09-23
1
-10
/
+11
*
Add missing docstrings.
Raymond Hettinger
2004-03-14
1
-0
/
+67
*
SF patch #907403: Improvements to cStringIO.writelines()
Raymond Hettinger
2004-03-08
1
-2
/
+4
*
Replace backticks with repr() or "%r"
Walter Dörwald
2004-02-12
1
-2
/
+2
*
Whitespace normalization.
Tim Peters
2004-01-18
1
-1
/
+1
*
Make the module docstring a raw string, so that the backslash in
Walter Dörwald
2003-12-15
1
-1
/
+1
*
Patch #822994: Consolidate tests for self.closed.
Martin v. Löwis
2003-10-18
1
-18
/
+14
*
Make StringIO its own iterator, similar to real files.
Guido van Rossum
2003-01-31
1
-1
/
+9
*
write(): Special case the common situation of a stream that's only
Fred Drake
2002-09-17
1
-0
/
+4
*
Remove uses of the string and types modules:
Walter Dörwald
2002-06-03
1
-3
/
+2
*
Whitespace normalization.
Tim Peters
2002-05-23
1
-6
/
+6
*
Added docstrings excerpted from Python Library Reference.
Raymond Hettinger
2002-05-15
1
-0
/
+23
*
Make StringIO work in --disable-unicode builds...
Michael W. Hudson
2002-05-13
1
-2
/
+2
*
Use isinstance() in preference to comparison of type by is.
Jeremy Hylton
2002-05-10
1
-2
/
+2
*
Partial introduction of bools where appropriate.
Guido van Rossum
2002-04-07
1
-1
/
+1
*
SF #515000, print result of f.tell() in test() instead of ignoring
Neal Norwitz
2002-02-11
1
-1
/
+1
*
Restore Python 2.1 StringIO.py behaviour: support concatenating
Marc-André Lemburg
2002-01-06
1
-5
/
+8
*
StringIO patch #462596: let's [c]StringIO accept read buffers on
Marc-André Lemburg
2001-09-24
1
-1
/
+4
*
__iter__(): New method so that StringIO's can participate in the
Barry Warsaw
2001-09-22
1
-0
/
+3
*
Remove silly EMPTYSTRING global. Saves a global lookup.
Marc-André Lemburg
2001-02-09
1
-8
/
+6
*
added __all__ lists to a number of Python modules
Skip Montanaro
2001-01-20
1
-0
/
+2
*
Untabify! (Barry, this is gonna cost you a bottle of wine! ;)
Fred Drake
2000-12-13
1
-105
/
+105
*
Change the file's indentation from tabs to 4 spaces per level.
Barry Warsaw
2000-12-12
1
-151
/
+163
*
Accept Finn Bock's patch #102208 to hardcode EINVAL to 22 when errno
Barry Warsaw
2000-12-12
1
-13
/
+16
*
[ Bug #116636 ] Bug in StringIO.write()
Guido van Rossum
2000-10-12
1
-0
/
+2
*
Add truncate() method to StringIO objects.
Fred Drake
2000-09-28
1
-0
/
+13
*
Support sizehint in StringIO.readlines, as documented.
Martin v. Löwis
2000-09-19
1
-1
/
+5
*
Simple changes by Gerrit Holl - move author acknowledgements out of
Guido van Rossum
2000-02-28
1
-0
/
+2
*
Mass patch by Ka-Ping Yee:
Guido van Rossum
2000-02-02
1
-27
/
+27
*
Raise the right exception (ValueError) for attempted I/O on closed StringIO
Fred Drake
1998-08-18
1
-1
/
+14
*
Patch by Lars Wirzenius to allow f.readline(length).
Guido van Rossum
1997-07-25
1
-1
/
+4
*
Sjoerd's StringIO speed-up
Guido van Rossum
1996-06-19
1
-7
/
+30
*
fix default arg for read() -- should be -1
Guido van Rossum
1996-01-25
1
-2
/
+2
*
Added flush() method.
Sjoerd Mullender
1995-07-19
1
-0
/
+2
*
set softspace to 0 in __init__
Guido van Rossum
1995-06-22
1
-0
/
+1
*
Two new generally useful modules: types defines names for all built-in types,
Guido van Rossum
1994-06-23
1
-0
/
+130