summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-08-18 17:21:10 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2015-08-18 17:21:10 (GMT)
commit6579459d4b10b8eef47e5de609de4aa54999fb06 (patch)
tree3d5f31876ee2727a32c8b152a8da03de41f59b0f /Misc/NEWS
parent2053aa119318c6bc931fff1cd76c1ab624e49232 (diff)
downloadcpython-6579459d4b10b8eef47e5de609de4aa54999fb06.zip
cpython-6579459d4b10b8eef47e5de609de4aa54999fb06.tar.gz
cpython-6579459d4b10b8eef47e5de609de4aa54999fb06.tar.bz2
cgi.FieldStorage.read_multi ignores Content-Length
Issue #24764: cgi.FieldStorage.read_multi() now ignores the Content-Length header in part headers. Patch written by Peter Landry and reviewed by Pierre Quentel.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 38e8031..70c3e1d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -75,6 +75,10 @@ Core and Builtins
Library
-------
+- Issue #24764: cgi.FieldStorage.read_multi() now ignores the Content-Length
+ header in part headers. Patch written by Peter Landry and reviewed by Pierre
+ Quentel.
+
- Issue #24774: Fix docstring in http.server.test. Patch from Chiu-Hsiang Hsu.
- Issue #21159: Improve message in configparser.InterpolationMissingOptionError.