[issue40321] urllib.request does not support HTTP response status code 308

2021-10-06 Thread Łukasz Langa
Łukasz Langa added the comment: Senthil, we can't be backporting new APIs to bugfix versions. I took care of updating tests and docs (versionadded), thanks for the code review. Thanks for the fix, Jochem! ✨  ✨ -- resolution: -> fixed stage: patch review -> resolved status: open ->

[issue40321] urllib.request does not support HTTP response status code 308

2021-10-06 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset f528045f695f7483d955a1eae4c1df68b1b4cacd by Łukasz Langa in branch 'main': bpo-40321: Add missing test, slightly expand documentation (GH-28760) https://github.com/python/cpython/commit/f528045f695f7483d955a1eae4c1df68b1b4cacd --

[issue40321] urllib.request does not support HTTP response status code 308

2021-10-06 Thread Łukasz Langa
Change by Łukasz Langa : -- nosy: +lukasz.langa nosy_count: 5.0 -> 6.0 pull_requests: +27101 pull_request: https://github.com/python/cpython/pull/28760 ___ Python tracker ___

[issue40321] urllib.request does not support HTTP response status code 308

2021-10-05 Thread miss-islington
Change by miss-islington : -- pull_requests: +27096 pull_request: https://github.com/python/cpython/pull/28751 ___ Python tracker ___

[issue40321] urllib.request does not support HTTP response status code 308

2021-10-05 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 4.0 -> 5.0 pull_requests: +27095 pull_request: https://github.com/python/cpython/pull/28750 ___ Python tracker

[issue40321] urllib.request does not support HTTP response status code 308

2021-10-05 Thread Senthil Kumaran
Senthil Kumaran added the comment: New changeset c379bc5ec9012cf66424ef3d80612cf13ec51006 by Jochem Schulenklopper in branch 'main': bpo-40321: Support HTTP response status code 308 in urllib.request (#19588) https://github.com/python/cpython/commit/c379bc5ec9012cf66424ef3d80612cf13ec51006

[issue40321] urllib.request does not support HTTP response status code 308

2021-09-28 Thread Roland Crosby
Roland Crosby added the comment: Hi, wanted to ping those watching this issue - there is a complete PR on GitHub, and all contributors have signed the CLA, but the bot hasn't updated the CLA status on the PR so it's still shown as blocking. Would appreciate if someone could manually fix the

[issue40321] urllib.request does not support HTTP response status code 308

2020-04-18 Thread Ned Deily
Change by Ned Deily : -- nosy: +orsenthil ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue40321] urllib.request does not support HTTP response status code 308

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

[issue40321] urllib.request does not support HTTP response status code 308

2020-04-18 Thread Jochem Schulenklopper
New submission from Jochem Schulenklopper : urllib.request does not yet support HTTP response status code 308, as defined in IETF RFC 7538, https://tools.ietf.org/html/rfc7538. 308 (permanent redirect) is the 307-variant (temporary redirect) of 301 (moved permanently). --