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 berker.peksag
Recipients akuchling, andresriancho, berker.peksag, facundobatista, jjlee, orsenthil, sirilyan
Date 2014-02-05.18:37:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1391625477.22.0.762998352611.issue1028088@psf.upfronthosting.co.za>
In-reply-to
Content
This was fixed in issue 16611 (for 3.3 and 3.4) and there is a open issue for 2.7: issue 19870. I'm closing this one as a duplicate of issue 19870, because it has a patch.

>>> from http import cookies
>>> C = cookies.SimpleCookie()
>>> C.load("chips=ahoy; vienna=finger; secure")
>>> print(C)
Set-Cookie: chips=ahoy
Set-Cookie: vienna=finger; secure
>>> C['vienna']['secure']
True
History
Date User Action Args
2014-02-05 18:37:57berker.peksagsetrecipients: + berker.peksag, akuchling, facundobatista, jjlee, orsenthil, sirilyan, andresriancho
2014-02-05 18:37:57berker.peksagsetmessageid: <1391625477.22.0.762998352611.issue1028088@psf.upfronthosting.co.za>
2014-02-05 18:37:57berker.peksaglinkissue1028088 messages
2014-02-05 18:37:57berker.peksagcreate