diff options
author | sobolevn <mail@sobolevn.me> | 2024-09-26 14:15:38 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-26 14:15:38 (GMT) |
commit | abe5f799e6ce1d177f79554f1b84d348b6141045 (patch) | |
tree | 20548f04e2a7fbd56ad8cb02fa95be5b8f19c06c /Misc | |
parent | cf2418076d7cf69a3bd4bf6be0e0001635a7ad4d (diff) | |
download | cpython-abe5f799e6ce1d177f79554f1b84d348b6141045.zip cpython-abe5f799e6ce1d177f79554f1b84d348b6141045.tar.gz cpython-abe5f799e6ce1d177f79554f1b84d348b6141045.tar.bz2 |
gh-124498: Fix `TypeAliasType` not to be generic, when `type_params=()` (#124499)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2024-09-25-12-14-58.gh-issue-124498.Ozxs55.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-09-25-12-14-58.gh-issue-124498.Ozxs55.rst b/Misc/NEWS.d/next/Library/2024-09-25-12-14-58.gh-issue-124498.Ozxs55.rst new file mode 100644 index 0000000..4dbf4eb --- /dev/null +++ b/Misc/NEWS.d/next/Library/2024-09-25-12-14-58.gh-issue-124498.Ozxs55.rst @@ -0,0 +1,2 @@ +Fix :class:`typing.TypeAliasType` not to be generic, when ``type_params`` is +an empty tuple. |