summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-03-12 09:13:36 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-03-12 09:13:36 (GMT)
commita112a8ae47813f75aa8ad27ee8c42a7c2e937d13 (patch)
treeead86515e9462a009586cfbd5f68bda5398b03a7 /Misc/NEWS
parentc775ad615a6370ec8424422422bbec3f0976428b (diff)
downloadcpython-a112a8ae47813f75aa8ad27ee8c42a7c2e937d13.zip
cpython-a112a8ae47813f75aa8ad27ee8c42a7c2e937d13.tar.gz
cpython-a112a8ae47813f75aa8ad27ee8c42a7c2e937d13.tar.bz2
Issue #22928: Disabled HTTP header injections in http.client.
Original patch by Demian Brecht.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2d69b76..282492c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -18,6 +18,9 @@ Core and Builtins
Library
-------
+- Issue #22928: Disabled HTTP header injections in http.client.
+ Original patch by Demian Brecht.
+
- Issue #23615: Modules bz2, tarfile and tokenize now can be reloaded with
imp.reload(). Patch by Thomas Kluyver.