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 SilentGhost
Recipients SilentGhost, ikreymer
Date 2016-03-17.07:39:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1458200363.07.0.926443344877.issue26570@psf.upfronthosting.co.za>
In-reply-to
Content
This is not a regression and you can see that if you do

print(SimpleCookie('A=B; expires=Thu, 01-Jan-1970 00:00:00 GMT, C=D'))

The values of expires and Path attribute were parsed incorrectly, even though you got two cookies. The problem as far as I can see is a non-standard separator between attributes that you're trying to use, i.e. a comma. If you were to use a semi-colon (or a space) there would not be a problem in any of the versions.
History
Date User Action Args
2016-03-17 07:39:23SilentGhostsetrecipients: + SilentGhost, ikreymer
2016-03-17 07:39:23SilentGhostsetmessageid: <1458200363.07.0.926443344877.issue26570@psf.upfronthosting.co.za>
2016-03-17 07:39:22SilentGhostlinkissue26570 messages
2016-03-17 07:39:22SilentGhostcreate