summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-03-12 11:13:36 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2015-03-12 11:13:36 +0200
commitf52cb397c583d106875f30d61ed323e50f18a389 (patch)
tree67e09dd016cf8ac03a95eb40eca9f3f603986eb3 /Misc
parent032f46c1b687d0b558e28d849d1895b910b0388d (diff)
downloadcpython-f52cb397c583d106875f30d61ed323e50f18a389.tar.gz
Issue #22928: Disabled HTTP header injections in http.client.
Original patch by Demian Brecht.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2d69b76555..282492c111 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.