[issue40001] ignore errors in SimpleCookie

2022-03-14 Thread Batuhan Taskaya
Change by Batuhan Taskaya : -- nosy: -BTaskaya ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40001] ignore errors in SimpleCookie

2022-03-14 Thread Batuhan Taskaya
Change by Batuhan Taskaya : -- pull_requests: -29968 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40001] ignore errors in SimpleCookie

2022-03-14 Thread Batuhan Taskaya
Change by Batuhan Taskaya : -- nosy: +BTaskaya nosy_count: 3.0 -> 4.0 pull_requests: +29968 pull_request: https://github.com/python/cpython/pull/19214 ___ Python tracker ___

[issue40001] ignore errors in SimpleCookie

2021-07-28 Thread Andrei Kulakov
Andrei Kulakov added the comment: Aviram: see issue https://bugs.python.org/issue17340 , there is a lot of old discussions along the same lines. -- nosy: +andrei.avk ___ Python tracker

[issue40001] ignore errors in SimpleCookie

2020-10-24 Thread Aviram
Aviram added the comment: Hi all, still waiting for review. -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue40001] ignore errors in SimpleCookie

2020-03-29 Thread Batuhan Taskaya
Change by Batuhan Taskaya : -- nosy: -BTaskaya ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40001] ignore errors in SimpleCookie

2020-03-29 Thread Batuhan Taskaya
Change by Batuhan Taskaya : -- pull_requests: -18577 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40001] ignore errors in SimpleCookie

2020-03-29 Thread Batuhan Taskaya
Change by Batuhan Taskaya : -- nosy: +BTaskaya nosy_count: 2.0 -> 3.0 pull_requests: +18577 pull_request: https://github.com/python/cpython/pull/19214 ___ Python tracker ___

[issue40001] ignore errors in SimpleCookie

2020-03-18 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch nosy: +python-dev nosy_count: 1.0 -> 2.0 pull_requests: +18410 stage: -> patch review pull_request: https://github.com/python/cpython/pull/19058 ___ Python tracker

[issue40001] ignore errors in SimpleCookie

2020-03-18 Thread Aviram
New submission from Aviram : SimpleCookie (http/cookies.py) load method fails if one of the has an issue. In real life scenarios, we want to be tolerant toward faulty cookies, and just ignore those. My suggestion is to add ignore_errors keyword argument to the load method of SimpleCookie,