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 /Doc/whatsnew | |
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 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.7.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst index 7edf4fc..b2dc995 100644 --- a/Doc/whatsnew/3.7.rst +++ b/Doc/whatsnew/3.7.rst @@ -95,6 +95,14 @@ New Modules Improved Modules ================ +cgi +--- + +:func:`~cgi.parse_multipart` returns the same results as +:class:`~FieldStorage` : for non-file fields, the value associated to a key +is a list of strings, not bytes. +(Contributed by Pierre Quentel in :issue:`29979`.) + binascii -------- |