summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-03-12 09:15:15 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-03-12 09:15:15 (GMT)
commitb669bfc2bed1f5487ac2762bff53b55f6155bb60 (patch)
tree5e4611fc1496efe54fd582b5680c8c3dbe562d26 /Misc
parent411bf641d3b820aa5e55718d5c5770543fa32255 (diff)
parenta112a8ae47813f75aa8ad27ee8c42a7c2e937d13 (diff)
downloadcpython-b669bfc2bed1f5487ac2762bff53b55f6155bb60.zip
cpython-b669bfc2bed1f5487ac2762bff53b55f6155bb60.tar.gz
cpython-b669bfc2bed1f5487ac2762bff53b55f6155bb60.tar.bz2
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 b7492f5..a07af34 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.