summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2024-05-08 19:31:41 (GMT)
committerGitHub <noreply@github.com>2024-05-08 19:31:41 (GMT)
commitc6680cdc5a7bfe7684af4dba981383cc80c889a8 (patch)
tree14da0a0ae489a14ad30630bfe5380c7788d0a799 /Misc
parent02d49af21929519f191af33856be53f0ab9e874b (diff)
downloadcpython-c6680cdc5a7bfe7684af4dba981383cc80c889a8.zip
cpython-c6680cdc5a7bfe7684af4dba981383cc80c889a8.tar.gz
cpython-c6680cdc5a7bfe7684af4dba981383cc80c889a8.tar.bz2
[3.13] gh-118772: Allow TypeVars without a default to follow those with a default when constructing aliases (GH-118774) (#118776)
(cherry picked from commit aac6b019fe91e2f9f7a955d4fc4db5d5efd968c9) Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2024-05-08-09-21-49.gh-issue-118772.c16E8X.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-05-08-09-21-49.gh-issue-118772.c16E8X.rst b/Misc/NEWS.d/next/Library/2024-05-08-09-21-49.gh-issue-118772.c16E8X.rst
new file mode 100644
index 0000000..474454b
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2024-05-08-09-21-49.gh-issue-118772.c16E8X.rst
@@ -0,0 +1,2 @@
+Allow :class:`typing.TypeVar` instances without a default to follow
+instances without a default in some cases. Patch by Jelle Zijlstra.