summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorCharles-François Natali <neologix@free.fr>2011-05-24 21:47:49 (GMT)
committerCharles-François Natali <neologix@free.fr>2011-05-24 21:47:49 (GMT)
commit1f4560c872f56e0d416dd091e9dbccbb93f716ba (patch)
tree99bd1b714ad78587ff9157370c774ba375b0aaac /Misc
parent17dc81951acac1e6e6488357085003b3d9a9f48f (diff)
downloadcpython-1f4560c872f56e0d416dd091e9dbccbb93f716ba.zip
cpython-1f4560c872f56e0d416dd091e9dbccbb93f716ba.tar.gz
cpython-1f4560c872f56e0d416dd091e9dbccbb93f716ba.tar.bz2
Issue #1441530: In imaplib, read the data in one chunk to speed up large
reads and simplify code.
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 917dfe3..68130a9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -161,6 +161,9 @@ Core and Builtins
Library
-------
+- Issue #1441530: In imaplib, read the data in one chunk to speed up large
+ reads and simplify code.
+
- Issue #12070: Fix the Makefile parser of the sysconfig module to handle
correctly references to "bogus variable" (e.g. "prefix=$/opt/python").