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: Add PEP 613 typing.TypeAlias to the standard library
Type: enhancement Stage: resolved
Components: Library (Lib) Versions: Python 3.10
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: east825, gvanrossum, levkivskyi, mikhail.golubev
Priority: normal Keywords: patch

Created on 2020-10-03 16:16 by mikhail.golubev, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 22532 merged east825, 2020-10-03 22:21
Messages (3)
msg377890 - (view) Author: Mikhail Golubev (mikhail.golubev) Date: 2020-10-03 16:16
TypeAlias is already included in typing_extensions package, making it available for pre-3.10 versions of Python. I'd like port this implementation to the upstream version of typing.
msg377899 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2020-10-03 18:54
Sure go right ahead.
msg378185 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2020-10-07 21:44
New changeset 4f3c25043d651a13c41cffcee703f7d5cb677cc7 by Mikhail Golubev in branch 'master':
bpo-41923: PEP 613: Add TypeAlias to typing module (#22532)
https://github.com/python/cpython/commit/4f3c25043d651a13c41cffcee703f7d5cb677cc7
History
Date User Action Args
2022-04-11 14:59:36adminsetgithub: 86089
2020-10-07 22:28:42gvanrossumsetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2020-10-07 21:44:49gvanrossumsetmessages: + msg378185
2020-10-03 22:21:15east825setkeywords: + patch
nosy: + east825

pull_requests: + pull_request21535
stage: patch review
2020-10-03 18:54:43gvanrossumsetmessages: + msg377899
2020-10-03 17:27:45xtreaksetnosy: + gvanrossum, levkivskyi
2020-10-03 16:16:30mikhail.golubevcreate