summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-03-17 06:42:48 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-03-17 06:42:48 (GMT)
commitce911c3fed7e6404fba7de3868b1000425984b1e (patch)
tree3c59e3e10f631a567a18c23b27dfe68f2f9e3484 /Misc
parent9528334e16abf1673edcfadf7007f55a864079b7 (diff)
downloadcpython-ce911c3fed7e6404fba7de3868b1000425984b1e.zip
cpython-ce911c3fed7e6404fba7de3868b1000425984b1e.tar.gz
cpython-ce911c3fed7e6404fba7de3868b1000425984b1e.tar.bz2
Issue #26499: Fixes to HTTPResponse.readline() and read1(), by Silent Ghost
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 9cb7f8c..7516932 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -91,6 +91,10 @@ Core and Builtins
Library
-------
+- Issue #26499: Account for remaining Content-Length in
+ HTTPResponse.readline() and read1(). Based on patch by Silent Ghost.
+ Also document that HTTPResponse now supports these methods.
+
- Issue #25320: Handle sockets in directories unittest discovery is scanning.
Patch from Victor van den Elzen.