summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2020-04-27 07:27:21 (GMT)
committerGitHub <noreply@github.com>2020-04-27 07:27:21 (GMT)
commit6292be7adf247589bbf03524f8883cb4cb61f3e9 (patch)
tree491a02064847cb3158bd029e178486b42bbc23e7 /Misc
parentcaf1aadf3d020f742ba3d7fcf678ca700224914b (diff)
downloadcpython-6292be7adf247589bbf03524f8883cb4cb61f3e9.zip
cpython-6292be7adf247589bbf03524f8883cb4cb61f3e9.tar.gz
cpython-6292be7adf247589bbf03524f8883cb4cb61f3e9.tar.bz2
bpo-40398: Fix typing.get_args() for special generic aliases. (GH-19720)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2020-04-26-22-25-36.bpo-40398.OdXnR3.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-04-26-22-25-36.bpo-40398.OdXnR3.rst b/Misc/NEWS.d/next/Library/2020-04-26-22-25-36.bpo-40398.OdXnR3.rst
new file mode 100644
index 0000000..a56da0c
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2020-04-26-22-25-36.bpo-40398.OdXnR3.rst
@@ -0,0 +1,2 @@
+:func:`typing.get_args` now always returns an empty tuple for special
+generic aliases.