[issue27674] Quote mark breaks cookie processing

2016-08-03 Thread Artur Smęt
Artur Smęt added the comment: Problem exists in Chrome for sure (it sends cookies as they are - set with JS for example). I have two another examples that can make this issue more clear: >>> from Cookie import SimpleCookie >>> c = SimpleCookie() >>> c.load(

[issue27674] Quote mark breaks cookie processing

2016-08-03 Thread Artur Smęt
Changes by Artur Smęt : -- versions: +Python 3.5 ___ Python tracker <http://bugs.python.org/issue27674> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue27674] Quote mark breaks cookie processing

2016-08-03 Thread Artur Smęt
New submission from Artur Smęt: The problem is similar to https://bugs.python.org/issue22931 with square brackets in cookie values. Incorrect value is serialized JSON in this case, for example: >>> from Cookie import SimpleCookie >>> cookie = SimpleCookie() >>> co