summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorMikhail Golubev <qsolo825@gmail.com>2020-10-07 21:44:31 (GMT)
committerGitHub <noreply@github.com>2020-10-07 21:44:31 (GMT)
commit4f3c25043d651a13c41cffcee703f7d5cb677cc7 (patch)
tree08093971ec6aefd8b762e8da9d20434c09a3c3ae /Misc/NEWS.d
parentf90dc36c15d7fee0efaf6d39e97be0bdf2683e93 (diff)
downloadcpython-4f3c25043d651a13c41cffcee703f7d5cb677cc7.zip
cpython-4f3c25043d651a13c41cffcee703f7d5cb677cc7.tar.gz
cpython-4f3c25043d651a13c41cffcee703f7d5cb677cc7.tar.bz2
bpo-41923: PEP 613: Add TypeAlias to typing module (#22532)
This special marker annotation is intended to help in distinguishing proper PEP 484-compliant type aliases from regular top-level variable assignments.
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Library/2020-10-03-23-14-50.bpo-41923.Buonw9.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-10-03-23-14-50.bpo-41923.Buonw9.rst b/Misc/NEWS.d/next/Library/2020-10-03-23-14-50.bpo-41923.Buonw9.rst
new file mode 100644
index 0000000..dd9a1f7
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2020-10-03-23-14-50.bpo-41923.Buonw9.rst
@@ -0,0 +1 @@
+Implement :pep:`613`, introducing :data:`typing.TypeAlias` annotation.