summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorscoder <stefan_ml@behnel.de>2020-07-03 00:09:28 (GMT)
committerGitHub <noreply@github.com>2020-07-03 00:09:28 (GMT)
commit148f32913573c29250dfb3f0d079eb8847633621 (patch)
treec13dbb1fa7eb316f45374b3972396619a2a7145c /Misc
parent67673b08ea302174ca9c6559c04311550ae9f189 (diff)
downloadcpython-148f32913573c29250dfb3f0d079eb8847633621.zip
cpython-148f32913573c29250dfb3f0d079eb8847633621.tar.gz
cpython-148f32913573c29250dfb3f0d079eb8847633621.tar.bz2
bpo-39960: Allow heap types in the "Carlo Verre" hack check that override "tp_setattro()" (GH-21092)
Automerge-Triggered-By: @gvanrossum
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2020-06-23-18-32-41.bpo-39960.Kez3fP.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-06-23-18-32-41.bpo-39960.Kez3fP.rst b/Misc/NEWS.d/next/Core and Builtins/2020-06-23-18-32-41.bpo-39960.Kez3fP.rst
new file mode 100644
index 0000000..f69fccf
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2020-06-23-18-32-41.bpo-39960.Kez3fP.rst
@@ -0,0 +1,2 @@
+The "hackcheck" that prevents sneaking around a type's __setattr__() by calling the
+superclass method was rewritten to allow C implemented heap types.