Searched refs:new_mro (Results 1 – 1 of 1) sorted by relevance
/third_party/python/Objects/ |
D | typeobject.c | 699 PyObject *new_mro, *old_mro; in mro_hierarchy() local 708 new_mro = type->tp_mro; in mro_hierarchy() 711 tuple = PyTuple_Pack(3, type, new_mro, old_mro); in mro_hierarchy() 713 tuple = PyTuple_Pack(2, type, new_mro); in mro_hierarchy() 723 Py_DECREF(new_mro); in mro_hierarchy() 855 PyObject *new_mro, *old_mro = NULL; in type_set_bases() local 858 "", 2, 3, &cls, &new_mro, &old_mro); in type_set_bases() 860 if (cls->tp_mro == new_mro) { in type_set_bases() 863 Py_DECREF(new_mro); in type_set_bases() 2057 PyObject *new_mro; in mro_invoke() local [all …]
|