diff options
author | Jelle Zijlstra <jelle.zijlstra@gmail.com> | 2024-05-08 16:54:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-08 16:54:51 (GMT) |
commit | aac6b019fe91e2f9f7a955d4fc4db5d5efd968c9 (patch) | |
tree | e477782eced559ac3848d7e3838033e408ab6979 /Misc | |
parent | 6d419db10c84cacbb3862e2adc940342175bfce9 (diff) | |
download | cpython-aac6b019fe91e2f9f7a955d4fc4db5d5efd968c9.zip cpython-aac6b019fe91e2f9f7a955d4fc4db5d5efd968c9.tar.gz cpython-aac6b019fe91e2f9f7a955d4fc4db5d5efd968c9.tar.bz2 |
gh-118772: Allow TypeVars without a default to follow those with a default when constructing aliases (#118774)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2024-05-08-09-21-49.gh-issue-118772.c16E8X.rst | 2 |
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. |