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 BreamoreBoy, berker.peksag, cburroughs, mixedpuppy, rhymes, rushman, trentm
Date 2012-12-10.14:32:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1355149975.65.0.784107535493.issue3073@psf.upfronthosting.co.za>
In-reply-to
Content
The bug has been fixed in issue 8826.

Related changeset:

- http://hg.python.org/cpython/rev/cb231b79693e/
- Backport: http://hg.python.org/cpython/rev/84363c747c21

In Python 2.7.3:

>>> from Cookie import SimpleCookie
>>> cookies = SimpleCookie()
>>> cookies.load('foo=baz; expires=Sat, 10-Jun-1978 09:41:04 GMT')
>>> cookies
<SimpleCookie: foo='baz'>
>>> cookies['foo']['expires']
'Sat, 10-Jun-1978 09:41:04 GMT'
>>> cookies.load('foo=baz; expires=2008-06-10T09:44:45.963024')
>>> cookies['foo']['expires']
'2008-06-10T09:44:45.963024'
History
Date User Action Args
2012-12-10 14:32:55berker.peksagsetrecipients: + berker.peksag, mixedpuppy, rhymes, trentm, cburroughs, rushman, BreamoreBoy
2012-12-10 14:32:55berker.peksagsetmessageid: <1355149975.65.0.784107535493.issue3073@psf.upfronthosting.co.za>
2012-12-10 14:32:55berker.peksaglinkissue3073 messages
2012-12-10 14:32:55berker.peksagcreate