Home | History | Annotate | Download | only in Objects

Lines Matching refs:mro

1367         PyObject *mro, *base, *dict;

1369 /* Look in tp_dict of types in MRO */
1370 mro = tp->tp_mro;
1371 assert(mro != NULL);
1372 assert(PyTuple_Check(mro));
1373 n = PyTuple_GET_SIZE(mro);
1375 base = PyTuple_GET_ITEM(mro, i);