diff options
author | Nikita Sobolev <mail@sobolevn.me> | 2024-03-01 16:19:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-01 16:19:24 (GMT) |
commit | a7549b03cec1699b5342cddf292c179315433fa2 (patch) | |
tree | 0698f307df96659b82fe2e68c18e5f42275ce6a0 /Misc | |
parent | 2713c2abc8d0f30cd0060cd307bb4ec92f1f04bf (diff) | |
download | cpython-a7549b03cec1699b5342cddf292c179315433fa2.zip cpython-a7549b03cec1699b5342cddf292c179315433fa2.tar.gz cpython-a7549b03cec1699b5342cddf292c179315433fa2.tar.bz2 |
gh-112281: Allow `Union` with unhashable `Annotated` metadata (#112283)
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2023-11-20-16-15-44.gh-issue-112281.gH4EVk.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-11-20-16-15-44.gh-issue-112281.gH4EVk.rst b/Misc/NEWS.d/next/Library/2023-11-20-16-15-44.gh-issue-112281.gH4EVk.rst new file mode 100644 index 0000000..01f6689 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2023-11-20-16-15-44.gh-issue-112281.gH4EVk.rst @@ -0,0 +1,2 @@ +Allow creating :ref:`union of types<types-union>` for +:class:`typing.Annotated` with unhashable metadata. |