summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-01-14 13:05:21 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-01-14 13:05:21 (GMT)
commit5c23b8e6ea7cdb0002842d16dbce4b4d716dd35a (patch)
treef426907a4cf85dcbf58941f4c78a855554e4fce9 /Misc
parent1d87deb60546050f3ef3c136ae124efb96de7517 (diff)
downloadcpython-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/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3b0e813..dff100b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.