diff options
author | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2023-01-12 22:13:56 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-12 22:13:56 (GMT) |
commit | 94fc7706b7bc3d57cdd6d15bf8e8c4499ae53a69 (patch) | |
tree | 501e5fc7cea686172fe9a21102a232f1544f310c | |
parent | b511d3512ba334475201baf4d9db7c4d28f0a9ad (diff) | |
download | cpython-94fc7706b7bc3d57cdd6d15bf8e8c4499ae53a69.zip cpython-94fc7706b7bc3d57cdd6d15bf8e8c4499ae53a69.tar.gz cpython-94fc7706b7bc3d57cdd6d15bf8e8c4499ae53a69.tar.bz2 |
GH-100942: Fix incorrect cast in property_copy(). (#100965)
-rw-r--r-- | Lib/test/test_property.py | 17 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2023-01-11-22-52-19.gh-issue-100942.ontOy_.rst | 2 | ||||
-rw-r--r-- | Objects/descrobject.c | 4 |
3 files changed, 22 insertions, 1 deletions
diff --git a/Lib/test/test_property.py b/Lib/test/test_property.py index d07b863..d4bdf50 100644 --- a/Lib/test/test_property.py +++ b/Lib/test/test_property.py @@ -214,6 +214,23 @@ class PropertyTests(unittest.TestCase): ): p.__set_name__(*([0] * i)) + def test_property_setname_on_property_subclass(self): + # https://github.com/python/cpython/issues/100942 + # Copy was setting the name field without first + # verifying that the copy was an actual property + # instance. As a result, the code below was + # causing a segfault. + + class pro(property): + def __new__(typ, *args, **kwargs): + return "abcdef" + + class A: + pass + + p = property.__new__(pro) + p.__set_name__(A, 1) + np = p.getter(lambda self: 1) # Issue 5890: subclasses of property do not preserve method __doc__ strings class PropertySub(property): 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. diff --git a/Objects/descrobject.c b/Objects/descrobject.c index c545b90..334be75 100644 --- a/Objects/descrobject.c +++ b/Objects/descrobject.c @@ -1712,7 +1712,9 @@ property_copy(PyObject *old, PyObject *get, PyObject *set, PyObject *del) if (new == NULL) return NULL; - Py_XSETREF(((propertyobject *) new)->prop_name, Py_XNewRef(pold->prop_name)); + if (PyObject_TypeCheck((new), &PyProperty_Type)) { + Py_XSETREF(((propertyobject *) new)->prop_name, Py_XNewRef(pold->prop_name)); + } return new; } |