diff options
author | Pierre Quentel <pierre.quentel@gmail.com> | 2017-05-08 12:08:34 (GMT) |
---|---|---|
committer | Senthil Kumaran <skumaran@gatech.edu> | 2017-05-08 12:08:34 (GMT) |
commit | cc3fa204d357be5fafc10eb8c2a80fe0bca998f1 (patch) | |
tree | bd84defa311575c96461db01238cd231d94c439f /Misc | |
parent | f34c6850203a2406c4950af7a9c8a134145df4ea (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |