summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNikita Sobolev <mail@sobolevn.me>2022-08-30 07:34:55 (GMT)
committerGitHub <noreply@github.com>2022-08-30 07:34:55 (GMT)
commit75177358a62afeabd1d3aa0e9f395c2b9d4495ca (patch)
treef9831706cdbc25e690683119210baa3d102956f1 /Misc
parentd21d2f0793ce32d72759d5cfc11622d13e3e6b81 (diff)
downloadcpython-75177358a62afeabd1d3aa0e9f395c2b9d4495ca.zip
cpython-75177358a62afeabd1d3aa0e9f395c2b9d4495ca.tar.gz
cpython-75177358a62afeabd1d3aa0e9f395c2b9d4495ca.tar.bz2
gh-96385: Correctly raise error on `[*T, *V]` substitution (GH-96386)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2022-08-29-15-28-39.gh-issue-96385.uLRTsf.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-08-29-15-28-39.gh-issue-96385.uLRTsf.rst b/Misc/NEWS.d/next/Library/2022-08-29-15-28-39.gh-issue-96385.uLRTsf.rst
new file mode 100644
index 0000000..5735482
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2022-08-29-15-28-39.gh-issue-96385.uLRTsf.rst
@@ -0,0 +1,3 @@
+Fix ``TypeVarTuple.__typing_prepare_subst__``. ``TypeError`` was not raised
+when using more than one ``TypeVarTuple``, like ``[*T, *V]`` in type alias
+substitutions.