summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2020-12-05 13:26:24 (GMT)
committerGitHub <noreply@github.com>2020-12-05 13:26:24 (GMT)
commitda3d2abe6be9fcf18cac12ec5d7d9f1180d94b5e (patch)
tree20e9e1dcf25c25fcfc998cae6f0b6f2049749edb /Misc
parent556d97f473fa538cef780f84bd29239ecf57d9c5 (diff)
downloadcpython-da3d2abe6be9fcf18cac12ec5d7d9f1180d94b5e.zip
cpython-da3d2abe6be9fcf18cac12ec5d7d9f1180d94b5e.tar.gz
cpython-da3d2abe6be9fcf18cac12ec5d7d9f1180d94b5e.tar.bz2
GH-5054: CGIHTTPRequestHandler.run_cgi() HTTP_ACCEPT improperly parsed (#23638)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2020-12-04-03-51-12.bpo-5054.53StYZ.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-12-04-03-51-12.bpo-5054.53StYZ.rst b/Misc/NEWS.d/next/Library/2020-12-04-03-51-12.bpo-5054.53StYZ.rst
new file mode 100644
index 0000000..ad8163c
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2020-12-04-03-51-12.bpo-5054.53StYZ.rst
@@ -0,0 +1,5 @@
+CGIHTTPRequestHandler.run_cgi() HTTP_ACCEPT improperly parsed. Replace the
+special purpose getallmatchingheaders with generic get_all method and add
+relevant tests.
+
+Original Patch by Martin Panter. Modified by Senthil Kumaran.