Pierre Quentel <pierre.quen...@gmail.com> added the comment:

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 ?

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue12411>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to