This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Remove deprecated __getitem__ methods
Type: Stage: resolved
Components: Library (Lib) Versions: Python 3.11
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: hugovk, serhiy.storchaka
Priority: normal Keywords: patch

Created on 2021-09-07 18:35 by hugovk, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 28225 merged hugovk, 2021-09-07 18:39
PR 28270 merged serhiy.storchaka, 2021-09-10 12:23
Messages (4)
msg401322 - (view) Author: Hugo van Kemenade (hugovk) * (Python triager) Date: 2021-09-07 18:35
The __getitem__ methods of xml.dom.pulldom.DOMEventStream, wsgiref.util.FileWrapper and were deprecated in Python 3.8 by bpo-9372 / GH-8609.

They can be removed in Python 3.11.
msg401367 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2021-09-08 10:07
New changeset d003a5bd2505a7fa04f50504b68ba8fca67349cd by Hugo van Kemenade in branch 'main':
bpo-45132 Remove deprecated __getitem__ methods (GH-28225)
https://github.com/python/cpython/commit/d003a5bd2505a7fa04f50504b68ba8fca67349cd
msg401368 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2021-09-08 10:12
Thank you for your contribution Hugo.
msg401577 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2021-09-10 12:40
New changeset 17a1b3e63a5db4e581c0ef52751df2314f7249fa by Serhiy Storchaka in branch 'main':
bpo-45132: Fix the reStructuredText markup error. (GH-28270)
https://github.com/python/cpython/commit/17a1b3e63a5db4e581c0ef52751df2314f7249fa
History
Date User Action Args
2022-04-11 14:59:49adminsetgithub: 89295
2021-09-10 12:40:15serhiy.storchakasetmessages: + msg401577
2021-09-10 12:23:24serhiy.storchakasetpull_requests: + pull_request26690
2021-09-08 10:12:32serhiy.storchakasetstatus: open -> closed
resolution: fixed
messages: + msg401368

stage: patch review -> resolved
2021-09-08 10:07:47serhiy.storchakasetnosy: + serhiy.storchaka
messages: + msg401367
2021-09-07 18:39:22hugovksetkeywords: + patch
stage: patch review
pull_requests: + pull_request26647
2021-09-07 18:35:35hugovkcreate