summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorInada Naoki <songofacandy@gmail.com>2019-04-06 09:06:19 (GMT)
committerGitHub <noreply@github.com>2019-04-06 09:06:19 (GMT)
commitd6bf6f2d0c83f0c64ce86e7b9340278627798090 (patch)
tree248e16d0f775950d69d7800abd2766bec9fbb44d /Misc
parenta0da131a74acdb147ecd64d729c86d65fecd0cff (diff)
downloadcpython-d6bf6f2d0c83f0c64ce86e7b9340278627798090.zip
cpython-d6bf6f2d0c83f0c64ce86e7b9340278627798090.tar.gz
cpython-d6bf6f2d0c83f0c64ce86e7b9340278627798090.tar.bz2
bpo-36050: optimize HTTPResponse.read() (GH-12698)
* No need to chunking for now. * No need to partial read caused by EINTR for now.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-04-05-21-29-53.bpo-36050.x9DRKE.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-04-05-21-29-53.bpo-36050.x9DRKE.rst b/Misc/NEWS.d/next/Library/2019-04-05-21-29-53.bpo-36050.x9DRKE.rst
new file mode 100644
index 0000000..92318f8
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-04-05-21-29-53.bpo-36050.x9DRKE.rst
@@ -0,0 +1,2 @@
+Optimized ``http.client.HTTPResponse.read()`` for large response. Patch by
+Inada Naoki.