This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author quentel
Recipients quentel
Date 2017-04-04.08:58:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1491296331.11.0.181533719685.issue29979@psf.upfronthosting.co.za>
In-reply-to
Content
In the cgi module, the parse_multipart() function duplicates code from FieldStorage, and the result is not compliant with that of FieldStorage for requests sent with multipart/form-data : for non-file fields, the value associated with a key is a list of *bytes* in parse_multipart() and a list of *strings* for FieldStorage (the bytes decoded with the argument "encoding" passed to FieldStorage()).

I will propose a PR on the Github repo with a version of parse_multipart that uses FieldStorage and returns the same result (values as strings). The function will take an additional argument "encoding".
History
Date User Action Args
2017-04-04 08:58:51quentelsetrecipients: + quentel
2017-04-04 08:58:51quentelsetmessageid: <1491296331.11.0.181533719685.issue29979@psf.upfronthosting.co.za>
2017-04-04 08:58:51quentellinkissue29979 messages
2017-04-04 08:58:50quentelcreate