summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
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 /Doc/whatsnew
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 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.7.rst8
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
--------