summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-06-26 22:05:36 (GMT)
committerBarry Warsaw <barry@python.org>2019-06-26 22:05:36 (GMT)
commit82654a037211a3466a294d53952926fc87f8403d (patch)
tree45a1c38b23e52963954dc0308b6d64e290e93fb5 /Misc
parent04d4692579cc4e0204c7fbced3692f8aa4bbb857 (diff)
downloadcpython-82654a037211a3466a294d53952926fc87f8403d.zip
cpython-82654a037211a3466a294d53952926fc87f8403d.tar.gz
cpython-82654a037211a3466a294d53952926fc87f8403d.tar.bz2
bpo-29412: Fix indexError when parsing a header value ending unexpectedly (GH-14387) (GH-14411)
* patched string index out of range error in get_word function of _header_value_parser.py and created tests in test__header_value_parser.py for CFWS. * Raise HeaderParseError instead of continuing when parsing a word. (cherry picked from commit 7213df7bbfd85378c6e42e1ac63144d5974bdcf6) Co-authored-by: Abhilash Raj <maxking@users.noreply.github.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-06-25-19-27-25.bpo-29412.n4Zqdh.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-06-25-19-27-25.bpo-29412.n4Zqdh.rst b/Misc/NEWS.d/next/Library/2019-06-25-19-27-25.bpo-29412.n4Zqdh.rst
new file mode 100644
index 0000000..b8fac46
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-06-25-19-27-25.bpo-29412.n4Zqdh.rst
@@ -0,0 +1,2 @@
+Fix IndexError in parsing a header value ending unexpectedly. Patch by Abhilash
+Raj.