[issue42066] CookieJar cookies should not be sorted

2021-10-07 Thread Patrick Decat
Change by Patrick Decat : -- nosy: +Patrick Decat ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue42066] CookieJar cookies should not be sorted

2020-10-19 Thread Raymond Hettinger
Change by Raymond Hettinger : -- versions: -Python 3.6, Python 3.7, Python 3.8, Python 3.9 ___ Python tracker ___ ___ Python-bugs-l

[issue42066] CookieJar cookies should not be sorted

2020-10-18 Thread Raymond Hettinger
Raymond Hettinger added the comment: The seems reasonable to me. Likely, the sorting was originally added to make the execution order deterministic. Now that dicts remember insertion order, that is no longer necessary. Helpfully, the docs do not specify sorting, so there is no guaranteed

[issue42066] CookieJar cookies should not be sorted

2020-10-18 Thread Iman Kermani
Change by Iman Kermani : -- keywords: +patch pull_requests: +21707 stage: -> patch review pull_request: https://github.com/python/cpython/pull/22745 ___ Python tracker ___ ___

[issue42066] CookieJar cookies should not be sorted

2020-10-18 Thread Iman Kermani
New submission from Iman Kermani : Lib/http/cookiejar.py By default python handle cookies based on regular Netscape cookie protocol and the protocol defined by RFC 2965. There is a behavior in python which sort cookies in CookieJar by default: https://github.com/python/cpython/blob/975d10a4f8