diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-01-14 13:05:21 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-01-14 13:05:21 (GMT) |
commit | 5c23b8e6ea7cdb0002842d16dbce4b4d716dd35a (patch) | |
tree | f426907a4cf85dcbf58941f4c78a855554e4fce9 /Misc | |
parent | 1d87deb60546050f3ef3c136ae124efb96de7517 (diff) | |
download | cpython-5c23b8e6ea7cdb0002842d16dbce4b4d716dd35a.zip cpython-5c23b8e6ea7cdb0002842d16dbce4b4d716dd35a.tar.gz cpython-5c23b8e6ea7cdb0002842d16dbce4b4d716dd35a.tar.bz2 |
Issue #4953: cgi.FieldStorage and cgi.parse() parse the request as bytes, not
as unicode, and accept binary files. Add encoding and errors attributes to
cgi.FieldStorage.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -43,6 +43,10 @@ Core and Builtins Library ------- +- Issue #4953: cgi.FieldStorage and cgi.parse() parse the request as bytes, not + as unicode, and accept binary files. Add encoding and errors attributes to + cgi.FieldStorage. + - Add encoding and errors arguments to urllib.parse_qs() and urllib.parse_qsl() - Issue #10899: No function type annotations in the standard library. |