This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author xtreak
Recipients sirkonst, xtreak
Date 2019-06-14.09:07:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1560503239.46.0.0308233542698.issue37277@roundup.psfhosted.org>
In-reply-to
Content
This could be due to issue22796. See also https://bugs.python.org/issue27828#msg273355.

➜  cpython git:(master) ✗ git checkout b1e36073cdde71468efa27e88016aa6dd46f3ec7~1 Lib/http/cookies.py
➜  cpython git:(master) ✗ ./python.exe -c 'from http.cookies import SimpleCookie; print(SimpleCookie("a=1; test;"))' # parses a=1
Set-Cookie: a=1
➜  cpython git:(master) ✗ git checkout b1e36073cdde71468efa27e88016aa6dd46f3ec7 Lib/http/cookies.py
➜  cpython git:(master) ✗ ./python.exe -c 'from http.cookies import SimpleCookie; print(SimpleCookie("a=1; test;"))' # No value printed
History
Date User Action Args
2019-06-14 09:07:19xtreaksetrecipients: + xtreak, sirkonst
2019-06-14 09:07:19xtreaksetmessageid: <1560503239.46.0.0308233542698.issue37277@roundup.psfhosted.org>
2019-06-14 09:07:19xtreaklinkissue37277 messages
2019-06-14 09:07:19xtreakcreate