summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2011-02-21 19:42:11 (GMT)
committerRaymond Hettinger <python@rcn.com>2011-02-21 19:42:11 (GMT)
commitddb52404eef6e107abbacd5d78c0f96a7e289b32 (patch)
treeeae4ce0650917c3d124e46d06e8c654b01cd1421 /Misc
parent31f5929c1e28adcaa1fdb302da366f3c7a92a98a (diff)
downloadcpython-ddb52404eef6e107abbacd5d78c0f96a7e289b32.zip
cpython-ddb52404eef6e107abbacd5d78c0f96a7e289b32.tar.gz
cpython-ddb52404eef6e107abbacd5d78c0f96a7e289b32.tar.bz2
Issue #11089: Fix performance issue limiting the use of ConfigParser()
with large config files.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9744ed8..65ae5f9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -15,6 +15,9 @@ Core and Builtins
Library
-------
+- Issue #11089: Fix performance issue limiting the use of ConfigParser()
+ with large config files.
+
- Issue #10276: Fix the results of zlib.crc32() and zlib.adler32() on buffers
larger than 4GB. Patch by Nadeem Vawda.