summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2010-10-11 19:13:04 (GMT)
committerFred Drake <fdrake@acm.org>2010-10-11 19:13:04 (GMT)
commit577acb4e30f272db9a255bbbce0a4351a1698710 (patch)
tree952223988dbc05e48bced4c34314de1e695f678f /Misc
parent5e8349e5cc42f0cbae1706cd9b6317e8dd406ee6 (diff)
downloadcpython-577acb4e30f272db9a255bbbce0a4351a1698710.zip
cpython-577acb4e30f272db9a255bbbce0a4351a1698710.tar.gz
cpython-577acb4e30f272db9a255bbbce0a4351a1698710.tar.bz2
improve performance of writing past the end of the file for cStringIO
(http://bugs.python.org/issue10045)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 275426e..ea7d9da 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -755,6 +755,7 @@ Peter Stoehr
Casper Stoel
Michael Stone
Ken Stox
+Patrick Strawderman
Dan Stromberg
Daniel Stutzbach
Nathan Sullivan
diff --git a/Misc/NEWS b/Misc/NEWS
index 613afd9..d86f34f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -48,6 +48,9 @@ Core and Builtins
Library
-------
+- Issue #10045: Improved performance when writing after seeking past the
+ end of the "file" in cStringIO.
+
- Issue #9948: Fixed problem of losing filename case information.
- Issue #9437: Fix building C extensions with non-default LDFLAGS.