Home
last modified time | relevance | path

Searched refs:new_slots (Results 1 – 1 of 1) sorted by relevance

/third_party/python/Objects/
Dtypeobject.c2573 PyObject *new_slots = PyList_New(new_nslot); in type_new_copy_slots() local
2574 if (new_slots == NULL) { in type_new_copy_slots()
2593 PyList_SET_ITEM(new_slots, j, slot); in type_new_copy_slots()
2617 if (PyList_Sort(new_slots) == -1) { in type_new_copy_slots()
2621 PyObject *tuple = PyList_AsTuple(new_slots); in type_new_copy_slots()
2622 Py_DECREF(new_slots); in type_new_copy_slots()
2631 Py_DECREF(new_slots); in type_new_copy_slots()
2691 PyObject *new_slots = type_new_copy_slots(ctx, dict); in type_new_slots_impl() local
2692 if (new_slots == NULL) { in type_new_slots_impl()
2695 assert(PyTuple_CheckExact(new_slots)); in type_new_slots_impl()
[all …]