Searched refs:object_new (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Objects/ |
D | typeobject.c | 2968 object_new(PyTypeObject *type, PyObject *args, PyObject *kwds); 2984 type->tp_new != object_new) in object_init() 2991 type->tp_new == object_new) in object_init() 3002 object_new(PyTypeObject *type, PyObject *args, PyObject *kwds) in object_new() function 3006 if (type->tp_new != object_new && in object_new() 3013 else if (type->tp_new != object_new || in object_new() 3719 object_new, /* tp_new */
|
/external/python/cpython3/Objects/ |
D | typeobject.c | 3642 object_new(PyTypeObject *type, PyObject *args, PyObject *kwds); 3661 if (type->tp_new == object_new) { in object_init() 3672 object_new(PyTypeObject *type, PyObject *args, PyObject *kwds) in object_new() function 3675 if (type->tp_new != object_new) { in object_new() 4765 object_new, /* tp_new */
|