diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-01-23 16:02:57 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-01-23 16:02:57 (GMT) |
commit | 9d8a3ad02acdd7800775b4e1e205bf7c8e47162f (patch) | |
tree | 901d68e13ac436902349f95a7a24dcc56a1d69f2 /Misc | |
parent | d775bcabe7c73ec10598e50c01586d470374baff (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 ---- |