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 pdbogen
Recipients pdbogen
Date 2013-11-20.20:23:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1384979004.61.0.0353093814459.issue19670@psf.upfronthosting.co.za>
In-reply-to
Content
SimpleCookie uses _quote to quote cookie values, which converts special characters to \OCTAL notation. This is not RFC6265 compliance, which requires- in part- that cookie values do not contain backslashes:

 cookie-value      = *cookie-octet / ( DQUOTE *cookie-octet DQUOTE )
 cookie-octet      = %x21 / %x23-2B / %x2D-3A / %x3C-5B / %x5D-7E
                       ; US-ASCII characters excluding CTLs,
                       ; whitespace DQUOTE, comma, semicolon,
                       ; and backslash
History
Date User Action Args
2013-11-20 20:23:24pdbogensetrecipients: + pdbogen
2013-11-20 20:23:24pdbogensetmessageid: <1384979004.61.0.0353093814459.issue19670@psf.upfronthosting.co.za>
2013-11-20 20:23:24pdbogenlinkissue19670 messages
2013-11-20 20:23:24pdbogencreate