Home
last modified time | relevance | path

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

/third_party/python/Objects/
Dgenericaliasobject.c271 PyObject *subargs = PyTuple_New(nsubargs); in subs_tvars() local
272 if (subargs == NULL) { in subs_tvars()
283 PyTuple_SET_ITEM(subargs, i, arg); in subs_tvars()
286 obj = PyObject_GetItem(obj, subargs); in subs_tvars()
288 Py_DECREF(subargs); in subs_tvars()
/third_party/python/Lib/
D_collections_abc.py501 subargs = tuple(subst[x] for x in subparams)
502 arg = arg[subargs]
Dtyping.py1060 subargs = tuple(subst[x] for x in subparams)
1061 arg = arg[subargs]