summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorNikita Sobolev <mail@sobolevn.me>2023-01-15 07:08:59 (GMT)
committerGitHub <noreply@github.com>2023-01-15 07:08:59 (GMT)
commitb7b641a2ffaa0d370e73bed193b55aacb82f1069 (patch)
tree112ec953f84399ee8dd23a33a72c73f34781ab82 /Misc/NEWS.d
parent78c9f39352a04e07ee4de7746c797ca79b5270d7 (diff)
downloadcpython-b7b641a2ffaa0d370e73bed193b55aacb82f1069.zip
cpython-b7b641a2ffaa0d370e73bed193b55aacb82f1069.tar.gz
cpython-b7b641a2ffaa0d370e73bed193b55aacb82f1069.tar.bz2
[3.10] GH-100942: Fix incorrect cast in property_copy(). (GH-100965). (#101009)
(cherry picked from commit 94fc7706b7bc3d57cdd6d15bf8e8c4499ae53a69) Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2023-01-11-22-52-19.gh-issue-100942.ontOy_.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2023-01-11-22-52-19.gh-issue-100942.ontOy_.rst b/Misc/NEWS.d/next/Core and Builtins/2023-01-11-22-52-19.gh-issue-100942.ontOy_.rst
new file mode 100644
index 0000000..daccea2
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2023-01-11-22-52-19.gh-issue-100942.ontOy_.rst
@@ -0,0 +1,2 @@
+Fixed segfault in property.getter/setter/deleter that occurred when a property
+subclass overrode the ``__new__`` method to return a non-property instance.