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 Simon.Blanchard
Recipients Simon.Blanchard
Date 2012-10-30.07:07:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1351580849.36.0.343039143633.issue16362@psf.upfronthosting.co.za>
In-reply-to
Content
_LegalCharsPatt  = r"[\w\d!#%&'~_`><@,:/\$\*\+\-\.\^\|\)\(\?\}\{\=]"

The above regex in cookies.py includes the the comma character but RFC 6265 https://tools.ietf.org/html/rfc6265 section 4.1.1 says:

 cookie-octet      = %x21 / %x23-2B / %x2D-3A / %x3C-5B / %x5D-7E
                       ; US-ASCII characters excluding CTLs,
                       ; whitespace DQUOTE, comma, semicolon,
                       ; and backslash

That is, no comma.
History
Date User Action Args
2012-10-30 07:07:29Simon.Blanchardsetrecipients: + Simon.Blanchard
2012-10-30 07:07:29Simon.Blanchardsetmessageid: <1351580849.36.0.343039143633.issue16362@psf.upfronthosting.co.za>
2012-10-30 07:07:29Simon.Blanchardlinkissue16362 messages
2012-10-30 07:07:28Simon.Blanchardcreate