summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSteven Troxler <steven.troxler@gmail.com>2023-02-27 21:16:11 (GMT)
committerGitHub <noreply@github.com>2023-02-27 21:16:11 (GMT)
commit0f89acf6cc4d4790f7b7a82165d0a6e7e84e4b72 (patch)
treeb411d170426a326dc109e23e3cf0d42a6d770337 /Misc
parent4624987b296108c2dc1e6e3a24e65d2de7afd451 (diff)
downloadcpython-0f89acf6cc4d4790f7b7a82165d0a6e7e84e4b72.zip
cpython-0f89acf6cc4d4790f7b7a82165d0a6e7e84e4b72.tar.gz
cpython-0f89acf6cc4d4790f7b7a82165d0a6e7e84e4b72.tar.bz2
gh-101561: Add typing.override decorator (#101564)
Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com> Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS.d/next/Library/2023-02-04-16-35-46.gh-issue-101561.Xo6pIZ.rst1
2 files changed, 2 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 3403aee..2da3d0a 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1848,6 +1848,7 @@ Tom Tromey
John Tromp
Diane Trout
Jason Trowbridge
+Steven Troxler
Brent Tubbs
Anthony Tuininga
Erno Tukia
diff --git a/Misc/NEWS.d/next/Library/2023-02-04-16-35-46.gh-issue-101561.Xo6pIZ.rst b/Misc/NEWS.d/next/Library/2023-02-04-16-35-46.gh-issue-101561.Xo6pIZ.rst
new file mode 100644
index 0000000..2f6a415
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2023-02-04-16-35-46.gh-issue-101561.Xo6pIZ.rst
@@ -0,0 +1 @@
+Add a new decorator :func:`typing.override`. See :pep:`698` for details. Patch by Steven Troxler.