Message210336
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 |
|
Date |
User |
Action |
Args |
2014-02-05 18:37:57 | berker.peksag | set | recipients:
+ berker.peksag, akuchling, facundobatista, jjlee, orsenthil, sirilyan, andresriancho |
2014-02-05 18:37:57 | berker.peksag | set | messageid: <1391625477.22.0.762998352611.issue1028088@psf.upfronthosting.co.za> |
2014-02-05 18:37:57 | berker.peksag | link | issue1028088 messages |
2014-02-05 18:37:57 | berker.peksag | create | |
|