diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2020-12-05 13:26:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-05 13:26:24 (GMT) |
commit | da3d2abe6be9fcf18cac12ec5d7d9f1180d94b5e (patch) | |
tree | 20e9e1dcf25c25fcfc998cae6f0b6f2049749edb /Misc/NEWS.d | |
parent | 556d97f473fa538cef780f84bd29239ecf57d9c5 (diff) | |
download | cpython-da3d2abe6be9fcf18cac12ec5d7d9f1180d94b5e.zip cpython-da3d2abe6be9fcf18cac12ec5d7d9f1180d94b5e.tar.gz cpython-da3d2abe6be9fcf18cac12ec5d7d9f1180d94b5e.tar.bz2 |
GH-5054: CGIHTTPRequestHandler.run_cgi() HTTP_ACCEPT improperly parsed (#23638)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2020-12-04-03-51-12.bpo-5054.53StYZ.rst | 5 |
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. |