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 checat
Recipients ajaksu2, alexz, barry, catlee, checat, eric.araujo, forest_atq, fsteinel, gotgenes, guettli, jnoller, orsenthil, pitrou, r.david.murray, shazow, tamentis
Date 2010-06-26.08:13:56
SpamBayes Score 0.004551265
Marked as misclassified No
Message-id <1277540038.79.0.280383781983.issue3244@psf.upfronthosting.co.za>
In-reply-to
Content
Did you test it against server-side form-data parser implementation? It will be useless if it won't work with most widespread implementations: PHP's and at least some others (consider some popular python web frameworks). 

MIME-compliance is not enough, because browsers send only subset of MIME format and server-side parsers don't expect bodies full of MIME features.

Particularly, I believe, most implementations don't expect any "Content-Transfer-Encoding", except "binary", because only 8-bit transfers are implemented in browsers, also you should check there will be no line-splitting and header-folding in headers and content, and make sure CR+LF (not plain LF, which is in patch) is always used.
History
Date User Action Args
2010-06-26 08:13:59checatsetrecipients: + checat, barry, guettli, orsenthil, pitrou, catlee, gotgenes, ajaksu2, jnoller, eric.araujo, forest_atq, fsteinel, r.david.murray, shazow, alexz, tamentis
2010-06-26 08:13:58checatsetmessageid: <1277540038.79.0.280383781983.issue3244@psf.upfronthosting.co.za>
2010-06-26 08:13:57checatlinkissue3244 messages
2010-06-26 08:13:56checatcreate