Searched refs:property_copy (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Objects/ |
D | descrobject.c | 1158 static PyObject * property_copy(PyObject *, PyObject *, PyObject *, 1176 return property_copy(self, getter, NULL, NULL); in property_getter() 1186 return property_copy(self, NULL, setter, NULL); in property_setter() 1196 return property_copy(self, NULL, NULL, deleter); in property_deleter() 1265 property_copy(PyObject *old, PyObject *get, PyObject *set, PyObject *del) in property_copy() function
|
/external/python/cpython3/Objects/ |
D | descrobject.c | 1262 static PyObject * property_copy(PyObject *, PyObject *, PyObject *, 1280 return property_copy(self, getter, NULL, NULL); in property_getter() 1290 return property_copy(self, NULL, setter, NULL); in property_setter() 1300 return property_copy(self, NULL, NULL, deleter); in property_deleter() 1394 property_copy(PyObject *old, PyObject *get, PyObject *set, PyObject *del) in property_copy() function
|