summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2014-02-08 22:03:56 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2014-02-08 22:03:56 (GMT)
commitb7d6d2ac6ea4361fd72314d466029bd119ad3fea (patch)
tree0fa0f18ecf0aa178d7db80a63e0ec62c17b5bacf /Misc
parentb4062e8f8a4515aa14550b1cd79fb4feaed95b5c (diff)
downloadcpython-b7d6d2ac6ea4361fd72314d466029bd119ad3fea.zip
cpython-b7d6d2ac6ea4361fd72314d466029bd119ad3fea.tar.gz
cpython-b7d6d2ac6ea4361fd72314d466029bd119ad3fea.tar.bz2
Issue #20540: Fix a performance regression (vs. Python 3.2) when layering a multiprocessing Connection over a TCP socket.
For small payloads, Nagle's algorithm would introduce idle delays before the entire transmission of a message.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3ee07439..fd89776 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -48,6 +48,11 @@ Core and Builtins
Library
-------
+- Issue #20540: Fix a performance regression (vs. Python 3.2) when layering
+ a multiprocessing Connection over a TCP socket. For small payloads, Nagle's
+ algorithm would introduce idle delays before the entire transmission of a
+ message.
+
- Issue #16983: the new email header parsing code will now decode encoded words
that are (incorrectly) surrounded by quotes, and register a defect.