[issue2212] Cookie.BaseCookie has ambiguous unicode handling

2019-01-26 Thread Martin Panter
Change by Martin Panter : -- stage: test needed -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailin

[issue2212] Cookie.BaseCookie has ambiguous unicode handling

2019-01-26 Thread Martin Panter
Martin Panter added the comment: Same as Issue 11315, where Éric suggested documenting the behaviour. -- nosy: +martin.panter resolution: -> duplicate superseder: -> unicode support in Cookie module ___ Python tracker

[issue2212] Cookie.BaseCookie has ambiguous unicode handling

2014-12-31 Thread A.M. Kuchling
Changes by A.M. Kuchling : -- nosy: -akuchling ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue2212] Cookie.BaseCookie has ambiguous unicode handling

2010-12-15 Thread Charles Duffy
Charles Duffy added the comment: Only the Comment field of a cookie is required by RFC2965 to support Unicode -- and several major browsers either mangle or discard cookies containing even high-ASCII values. Consequently, while some kind of unicode support is appropriate to implement, any pr

[issue2212] Cookie.BaseCookie has ambiguous unicode handling

2010-12-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: This is not a security issue, so removal of 2.6 was right the first time. Changing the one line would be easy, but I know nothing about what is correct or if there is even a standard for cookies. -- stage: -> unit test needed versions: -Python 2.6 _

[issue2212] Cookie.BaseCookie has ambiguous unicode handling

2010-12-14 Thread Michael Foord
Changes by Michael Foord : -- versions: +Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue2212] Cookie.BaseCookie has ambiguous unicode handling

2010-12-14 Thread Michael Foord
Michael Foord added the comment: Presumably not an issue for 3.1/3.2. (Terry - I assume Sean means the fix is in the bug report comment when he says 'inline'.) A patch and a test would still be nice. -- versions: +Python 2.7 -Python 2.6 ___ Python

[issue2212] Cookie.BaseCookie has ambiguous unicode handling

2010-12-14 Thread Michael Foord
Changes by Michael Foord : -- nosy: +michael.foord ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue2212] Cookie.BaseCookie has ambiguous unicode handling

2010-11-12 Thread A.M. Kuchling
Changes by A.M. Kuchling : -- assignee: akuchling -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue2212] Cookie.BaseCookie has ambiguous unicode handling

2010-06-09 Thread Terry J. Reedy
Terry J. Reedy added the comment: Sean, I don't understand 'inline' in this context. -- nosy: +tjreedy versions: -Python 2.5 ___ Python tracker ___ _

[issue2212] Cookie.BaseCookie has ambiguous unicode handling

2008-03-19 Thread Sean Reifschneider
Sean Reifschneider <[EMAIL PROTECTED]> added the comment: Fix is inline. -- assignee: -> akuchling keywords: +patch nosy: +akuchling, jafo priority: -> normal __ Tracker <[EMAIL PROTECTED]>

[issue2212] Cookie.BaseCookie has ambiguous unicode handling

2008-02-29 Thread Jamie Bliss
New submission from Jamie Bliss: The primary offender is in BaseCookie.load(), which uses the test: type(rawdata) == type("") which should be: isinstance(rawdata, basestring) -- components: Library (Lib) messages: 63145 nosy: astronouth7303 severity: normal status: open title: Co