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 MHordecki, efosmark, eric.araujo, flox, jonas.wagner, milesck, quentel, r.david.murray, taleinat, vstinner
Date 2011-07-04.20:44:02
SpamBayes Score 2.248911e-05
Marked as misclassified No
Message-id <1309812243.25.0.70363772737.issue12411@psf.upfronthosting.co.za>
In-reply-to
Content
When the FieldStorage class was fixed there was a discussion in issue 4953 about the module-level functions parse() and parse_multipart(). The code was very similar to methods of the FieldStorage class so the idea was to use FieldStorage inside the functions

The patch proposed in issue 11066 replaced the code in parse_multipart by just :

def parse_multipart(fp, pdict):
    return FieldStorage(fp,environ=pdict)

Did anyone test it ?
History
Date User Action Args
2011-07-04 20:44:03quentelsetrecipients: + quentel, vstinner, taleinat, eric.araujo, jonas.wagner, r.david.murray, efosmark, milesck, MHordecki, flox
2011-07-04 20:44:03quentelsetmessageid: <1309812243.25.0.70363772737.issue12411@psf.upfronthosting.co.za>
2011-07-04 20:44:02quentellinkissue12411 messages
2011-07-04 20:44:02quentelcreate