File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -95,6 +95,14 @@ New Modules
95
95
Improved Modules
96
96
================
97
97
98
+ cgi
99
+ ---
100
+
101
+ :func: `~cgi.parse_multipart ` returns the same results as
102
+ :class: `~FieldStorage ` : for non-file fields, the value associated to a key
103
+ is a list of strings, not bytes.
104
+ (Contributed by Pierre Quentel in :issue: `29979 `.)
105
+
98
106
http.server
99
107
-----------
100
108
Original file line number Diff line number Diff line change @@ -303,6 +303,10 @@ Extension Modules
303
303
Library
304
304
-------
305
305
306
+ - bpo-29979: rewrite cgi.parse_multipart, reusing the FieldStorage class and
307
+ making its results consistent with those of FieldStorage for
308
+ multipart/form-data requests. Patch by Pierre Quentel.
309
+
306
310
- bpo-29649: Improve struct.pack_into() exception messages for problems
307
311
with the buffer size and offset. Patch by Andrew Nester.
308
312
You can’t perform that action at this time.
0 commit comments