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 tovo
Recipients
Date 2005-05-28.10:13:30
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
According to RFC 2109

"For backward compatibility, the separator in the
Cookie header
is semi-colon (;) everywhere.  A server should also
accept comma (,)
as the separator between cookie-values for future
compatibility."

The Cookie standard module does not support this as it
should.

>>> import Cookie
>>> c=Cookie.SimpleCookie()
>>> c.load('foo=2, bar=3')
>>> print c['foo'].value
2,

History
Date User Action Args
2007-08-23 14:32:07adminlinkissue1210326 messages
2007-08-23 14:32:07admincreate