summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPierre Quentel <pierre.quentel@gmail.com>2017-05-08 12:08:34 (GMT)
committerSenthil Kumaran <skumaran@gatech.edu>2017-05-08 12:08:34 (GMT)
commitcc3fa204d357be5fafc10eb8c2a80fe0bca998f1 (patch)
treebd84defa311575c96461db01238cd231d94c439f /Misc
parentf34c6850203a2406c4950af7a9c8a134145df4ea (diff)
downloadcpython-cc3fa204d357be5fafc10eb8c2a80fe0bca998f1.zip
cpython-cc3fa204d357be5fafc10eb8c2a80fe0bca998f1.tar.gz
cpython-cc3fa204d357be5fafc10eb8c2a80fe0bca998f1.tar.bz2
bpo-29979: Rewrite cgi.parse_multipart to make it consistent with FieldStorage (#991)
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 a72fcef..5e5ce59 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -317,6 +317,10 @@ Extension Modules
Library
-------
+- bpo-29979: rewrite cgi.parse_multipart, reusing the FieldStorage class and
+ making its results consistent with those of FieldStorage for
+ multipart/form-data requests. Patch by Pierre Quentel.
+
- bpo-30243: Removed the __init__ methods of _json's scanner and encoder.
Misusing them could cause memory leaks or crashes. Now scanner and encoder
objects are completely initialized in the __new__ methods.