summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2015-01-23 16:02:57 (GMT)
committerBenjamin Peterson <benjamin@python.org>2015-01-23 16:02:57 (GMT)
commit9d8a3ad02acdd7800775b4e1e205bf7c8e47162f (patch)
tree901d68e13ac436902349f95a7a24dcc56a1d69f2 /Misc
parentd775bcabe7c73ec10598e50c01586d470374baff (diff)
downloadcpython-9d8a3ad02acdd7800775b4e1e205bf7c8e47162f.zip
cpython-9d8a3ad02acdd7800775b4e1e205bf7c8e47162f.tar.gz
cpython-9d8a3ad02acdd7800775b4e1e205bf7c8e47162f.tar.bz2
http.client: disable Nagle's algorithm (closes #23302)
Patch by Demian Brecht.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 5373f5b..5cd2c61 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1308,6 +1308,10 @@ Library
- Issue #22733: Fix ffi_prep_args not zero-extending argument values correctly
on 64-bit Windows.
+- Issue #23302: Default to TCP_NODELAY=1 upon establishing an HTTPConnection.
+ Removed use of hard-coded MSS as it's an optimization that's no longer needed
+ with Nagle disabled.
+
IDLE
----