summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorKen Jin <28750310+Fidget-Spinner@users.noreply.github.com>2021-04-27 14:31:04 (GMT)
committerGitHub <noreply@github.com>2021-04-27 14:31:04 (GMT)
commit05ab4b60ab3dae61ee75692b6624537d4f3fdf85 (patch)
treeca79d746064f5c352b712b5bc66d8c0322d51e84 /Misc
parentd92513390a1a0da781bb08c284136f4d7abea36d (diff)
downloadcpython-05ab4b60ab3dae61ee75692b6624537d4f3fdf85.zip
cpython-05ab4b60ab3dae61ee75692b6624537d4f3fdf85.tar.gz
cpython-05ab4b60ab3dae61ee75692b6624537d4f3fdf85.tar.bz2
bpo-43766: Implement PEP 647 (User-Defined Type Guards) in typing.py (#25282)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2021-04-09-00-16-22.bpo-43766.nYNQP0.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-04-09-00-16-22.bpo-43766.nYNQP0.rst b/Misc/NEWS.d/next/Library/2021-04-09-00-16-22.bpo-43766.nYNQP0.rst
new file mode 100644
index 0000000..4f039a7
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2021-04-09-00-16-22.bpo-43766.nYNQP0.rst
@@ -0,0 +1,2 @@
+Implement :pep:`647` in the :mod:`typing` module by adding
+:data:`TypeGuard`.