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 v+python
Recipients amaury.forgeotdarc, barry, eric.araujo, flox, ggenellina, giampaolo.rodola, gvanrossum, l0nwlf, oopos, pebbe, r.david.murray, tcourbon, tercero12, tobias, v+python
Date 2010-11-21.05:24:38
SpamBayes Score 0.021836985
Marked as misclassified No
Message-id <1290317079.68.0.408295002952.issue4953@psf.upfronthosting.co.za>
In-reply-to
Content
Regarding http://bugs.python.org/issue4953#msg91444 POST with multipart/form-data encoding can use UTF-8, other stuff is restricted to ASCII!

From http://www.w3.org/TR/html401/interact/forms.html:
Note. The "get" method restricts form data set values to ASCII characters. Only the "post" method (with enctype="multipart/form-data") is specified to cover the entire [ISO10646] character set.

Hence cgi formdata can safely decode text fields using UTF-8 decoding (experimentally, that is the encoding used by Firefox to support the entire ISO10646 character set).
History
Date User Action Args
2010-11-21 05:24:39v+pythonsetrecipients: + v+python, gvanrossum, barry, amaury.forgeotdarc, ggenellina, giampaolo.rodola, eric.araujo, r.david.murray, oopos, tercero12, tcourbon, tobias, flox, l0nwlf, pebbe
2010-11-21 05:24:39v+pythonsetmessageid: <1290317079.68.0.408295002952.issue4953@psf.upfronthosting.co.za>
2010-11-21 05:24:38v+pythonlinkissue4953 messages
2010-11-21 05:24:38v+pythoncreate