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 riklaunim
Recipients riklaunim
Date 2015-04-13.13:17:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1428931053.68.0.491418357539.issue23930@psf.upfronthosting.co.za>
In-reply-to
Content
Skype WISPr and iPassConnect (and maybe other bots) return cookies as a comma separated list. It's not a comma + space (which works).

C = cookies.SimpleCookie()
C.load('a=b,z=zz')
>>> C['a']
<Morsel: a='b,z=zz'>

I wonder what would those bots do if there was a comma in a cookie value.
History
Date User Action Args
2015-04-13 13:17:33riklaunimsetrecipients: + riklaunim
2015-04-13 13:17:33riklaunimsetmessageid: <1428931053.68.0.491418357539.issue23930@psf.upfronthosting.co.za>
2015-04-13 13:17:33riklaunimlinkissue23930 messages
2015-04-13 13:17:33riklaunimcreate