summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-06-17 13:34:41 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-06-17 13:34:41 (GMT)
commitc7bfe0e42eb72d941a8a131e870aefabd4547015 (patch)
tree25472c68db5275339492a7a52a0a59a2b8d1c01a /Misc
parent8b5629207944516a18834aec32e314b4aa4c09b2 (diff)
downloadcpython-c7bfe0e42eb72d941a8a131e870aefabd4547015.zip
cpython-c7bfe0e42eb72d941a8a131e870aefabd4547015.tar.gz
cpython-c7bfe0e42eb72d941a8a131e870aefabd4547015.tar.bz2
Issue #18167: cgi.FieldStorage no more fails to handle multipart/form-data
when \r\n appears at end of 65535 bytes without other newlines.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 67bc8dc..a9eeeff 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -32,6 +32,9 @@ Core and Builtins
Library
-------
+- Issue #18167: cgi.FieldStorage no more fails to handle multipart/form-data
+ when \r\n appears at end of 65535 bytes without other newlines.
+
- subprocess: Prevent a possible double close of parent pipe fds when the
subprocess exec runs into an error. Prevent a regular multi-close of the
/dev/null fd when any of stdin, stdout and stderr was set to DEVNULL.