summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAlex Waygood <Alex.Waygood@Gmail.com>2023-12-03 00:41:03 (GMT)
committerGitHub <noreply@github.com>2023-12-03 00:41:03 (GMT)
commit2a378ca2efcb91db4b04fb4e052424fd610ffbc9 (patch)
treea20aa90cc41df7ad619ca57ff4e7a72195c620e5 /Misc
parente3c79477708f479751237b6e1466ca74ea0bc432 (diff)
downloadcpython-2a378ca2efcb91db4b04fb4e052424fd610ffbc9.zip
cpython-2a378ca2efcb91db4b04fb4e052424fd610ffbc9.tar.gz
cpython-2a378ca2efcb91db4b04fb4e052424fd610ffbc9.tar.bz2
[3.12] gh-112618: Make Annotated cache typed (#112619) (#112628)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2023-12-02-12-55-17.gh-issue-112618.7_FT8-.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-12-02-12-55-17.gh-issue-112618.7_FT8-.rst b/Misc/NEWS.d/next/Library/2023-12-02-12-55-17.gh-issue-112618.7_FT8-.rst
new file mode 100644
index 0000000..c732de1
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2023-12-02-12-55-17.gh-issue-112618.7_FT8-.rst
@@ -0,0 +1,2 @@
+Fix a caching bug relating to :data:`typing.Annotated`.
+``Annotated[str, True]`` is no longer identical to ``Annotated[str, 1]``.