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 the _field_types attribute of NamedTuple
Type: enhancement Stage: resolved
Components: Library (Lib) Versions: Python 3.9
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: gvanrossum, levkivskyi, rhettinger, serhiy.storchaka
Priority: normal Keywords: patch

Created on 2020-04-04 20:42 by serhiy.storchaka, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 19368 merged serhiy.storchaka, 2020-04-04 20:50
Messages (2)
msg365780 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2020-04-04 20:42
It was deprecated since 3.8 (see issue36320). The __annotations__ attribute has the same information.
msg365793 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2020-04-04 21:43
New changeset 6fed3c85402c5ca704eb3f3189ca3f5c67a08d19 by Serhiy Storchaka in branch 'master':
bpo-40182: Remove the _field_types attribute of the NamedTuple class (GH-19368)
https://github.com/python/cpython/commit/6fed3c85402c5ca704eb3f3189ca3f5c67a08d19
History
Date User Action Args
2022-04-11 14:59:29adminsetgithub: 84363
2020-04-26 06:34:02xtreaklinkissue40392 superseder
2020-04-04 21:54:03serhiy.storchakasetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2020-04-04 21:43:24serhiy.storchakasetmessages: + msg365793
2020-04-04 20:50:46serhiy.storchakasetkeywords: + patch
stage: patch review
pull_requests: + pull_request18730
2020-04-04 20:42:01serhiy.storchakacreate