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 jgillick
Recipients jgillick
Date 2012-06-15.20:20:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1339791656.15.0.174723735856.issue15080@psf.upfronthosting.co.za>
In-reply-to
Content
The cookie library doesn't seem to support the standard date format (RFC 822) for the expire property while parsing a cookie. 

For example, in the Python prompt:

    >>> import Cookie
    >>> cookie = Cookie.SimpleCookie('bcookie="123"; Expires=Sat, 14-Jun-2014 23:03:13 GMT;')
    >>> cookie['bcookie']['expires']
    'Sat,'

That is a standard header, but it only processes the date up to the first space.
History
Date User Action Args
2012-06-15 20:20:56jgillicksetrecipients: + jgillick
2012-06-15 20:20:56jgillicksetmessageid: <1339791656.15.0.174723735856.issue15080@psf.upfronthosting.co.za>
2012-06-15 20:20:55jgillicklinkissue15080 messages
2012-06-15 20:20:54jgillickcreate