summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorShantanu <12621235+hauntsaninja@users.noreply.github.com>2022-04-05 02:35:29 (GMT)
committerGitHub <noreply@github.com>2022-04-05 02:35:29 (GMT)
commit5a4973e29f2f5c4ee8c086f40325786c62381540 (patch)
tree299614c1035acc20242c9e73156b70b40c3cc200 /Misc
parentbb86d1d9fbd1888524e04475383f4ea764277f67 (diff)
downloadcpython-5a4973e29f2f5c4ee8c086f40325786c62381540.zip
cpython-5a4973e29f2f5c4ee8c086f40325786c62381540.tar.gz
cpython-5a4973e29f2f5c4ee8c086f40325786c62381540.tar.bz2
bpo-46998: Allow subclassing Any at runtime (GH-31841)
Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2022-03-13-08-52-58.bpo-46998.cHh-9O.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-03-13-08-52-58.bpo-46998.cHh-9O.rst b/Misc/NEWS.d/next/Library/2022-03-13-08-52-58.bpo-46998.cHh-9O.rst
new file mode 100644
index 0000000..25b82b5
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2022-03-13-08-52-58.bpo-46998.cHh-9O.rst
@@ -0,0 +1 @@
+Allow subclassing of :class:`typing.Any`. Patch by Shantanu Jain.