diff options
author | Alex Waygood <Alex.Waygood@Gmail.com> | 2023-09-01 20:57:25 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-01 20:57:25 (GMT) |
commit | a1cbace91b624681dd7bb8eb82ba187bda55d785 (patch) | |
tree | 88c4433e4b03729be2e0e60475eb46211012e1be /Misc/NEWS.d | |
parent | 8f9ea43ee805f98391f857397daac9df7ffa71cd (diff) | |
download | cpython-a1cbace91b624681dd7bb8eb82ba187bda55d785.zip cpython-a1cbace91b624681dd7bb8eb82ba187bda55d785.tar.gz cpython-a1cbace91b624681dd7bb8eb82ba187bda55d785.tar.bz2 |
gh-105509: Simplify implementation of `typing.Annotated` (#105510)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2023-06-08-15-56-45.gh-issue-105509.YIG57j.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-06-08-15-56-45.gh-issue-105509.YIG57j.rst b/Misc/NEWS.d/next/Library/2023-06-08-15-56-45.gh-issue-105509.YIG57j.rst new file mode 100644 index 0000000..26d8a66 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2023-06-08-15-56-45.gh-issue-105509.YIG57j.rst @@ -0,0 +1,3 @@ +:data:`typing.Annotated` is now implemented as an instance of +``typing._SpecialForm`` rather than a class. This should have no user-facing +impact for users of the :mod:`typing` module public API. |