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: Implement PEP 591: add Final qualifier and @final decorator to typing
Type: enhancement Stage: resolved
Components: Library (Lib) Versions: Python 3.8
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: levkivskyi Nosy List: gvanrossum, levkivskyi, msullivan
Priority: normal Keywords: patch

Created on 2019-05-25 18:29 by levkivskyi, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 13571 merged levkivskyi, 2019-05-25 18:33
PR 13588 merged levkivskyi, 2019-05-26 21:27
Messages (2)
msg343501 - (view) Author: Ivan Levkivskyi (levkivskyi) * (Python committer) Date: 2019-05-25 18:29
The actual implementation is performed by type checkers like mypy. We just need to add the names to the `typing` module.
msg343538 - (view) Author: Ivan Levkivskyi (levkivskyi) * (Python committer) Date: 2019-05-26 08:37
New changeset f367242d10ef36db38133a39ab7627f63099cba4 by Ivan Levkivskyi in branch 'master':
bpo-37045: PEP 591: Add final qualifiers to typing module (GH-13571)
https://github.com/python/cpython/commit/f367242d10ef36db38133a39ab7627f63099cba4
History
Date User Action Args
2022-04-11 14:59:15adminsetgithub: 81226
2019-05-26 21:27:38levkivskyisetpull_requests: + pull_request13495
2019-05-26 08:43:55levkivskyisetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2019-05-26 08:37:20levkivskyisetmessages: + msg343538
2019-05-25 18:33:18levkivskyisetkeywords: + patch
stage: needs patch -> patch review
pull_requests: + pull_request13479
2019-05-25 18:29:03levkivskyicreate