Lines Matching defs:objs
1642 referrersvisit(PyObject* obj, PyObject *objs)
1645 for (i = 0; i < PyTuple_GET_SIZE(objs); i++)
1646 if (PyTuple_GET_ITEM(objs, i) == obj)
1652 gc_referrers_for(PyObject *objs, PyGC_Head *list, PyObject *resultlist)
1660 if (obj == objs || obj == resultlist)
1662 if (traverse(obj, (visitproc)referrersvisit, objs)) {
1671 "get_referrers(*objs) -> list\n\
1672 Return the list of objects that directly refer to any of objs.");
1704 "get_referents(*objs) -> list\n\
1705 Return the list of objects that are directly referred to by objs.");