Issue 40321: urllib.request does not support HTTP response status code 308 (original) (raw)

Issue40321

Created on 2020-04-18 17:47 by Jochem Schulenklopper, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 19588 merged python-dev,2020-04-18 18:27
PR 28750 closed miss-islington,2021-10-06 02:03
PR 28751 closed miss-islington,2021-10-06 02:03
PR 28760 merged lukasz.langa,2021-10-06 13:53
Messages (5)
msg366729 - (view) Author: Jochem Schulenklopper (Jochem Schulenklopper) * Date: 2020-04-18 17:47
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).
msg402817 - (view) Author: Roland Crosby (rolandcrosby) * Date: 2021-09-29 02:44
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 status and help get this merged.
msg403283 - (view) Author: Senthil Kumaran (orsenthil) * (Python committer) Date: 2021-10-06 02:03
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
msg403319 - (view) Author: Łukasz Langa (lukasz.langa) * (Python committer) Date: 2021-10-06 15:28
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
msg403320 - (view) Author: Łukasz Langa (lukasz.langa) * (Python committer) Date: 2021-10-06 15:29
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! ✨ 🍰 ✨
History
Date User Action Args
2022-04-11 14:59:29 admin set github: 84501
2021-10-06 15:29:43 lukasz.langa set status: open -> closedversions: + Python 3.11, - Python 3.5, Python 3.6, Python 3.7, Python 3.8, Python 3.9type: behavior -> enhancementmessages: + resolution: fixedstage: patch review -> resolved
2021-10-06 15:28:25 lukasz.langa set messages: +
2021-10-06 13:53:40 lukasz.langa set nosy: + lukasz.langapull_requests: + <pull%5Frequest27101>
2021-10-06 02:03:29 miss-islington set pull_requests: + <pull%5Frequest27096>
2021-10-06 02:03:24 miss-islington set nosy: + miss-islingtonpull_requests: + <pull%5Frequest27095>
2021-10-06 02:03:04 orsenthil set messages: +
2021-09-29 02:44:31 rolandcrosby set nosy: + rolandcrosbymessages: +
2020-04-18 20:40:00 ned.deily set nosy: + orsenthil
2020-04-18 18:27:07 python-dev set keywords: + patchnosy: + python-devpull_requests: + <pull%5Frequest18925>stage: patch review
2020-04-18 17:47:38 Jochem Schulenklopper create