Lines Matching defs:tuple
361 including names tuple */
1345 // When o is a tuple or frozenset, we want to merge its
1375 // *key* is tuple. And its first item is frozenset of
1385 PyObject *tuple = PyTuple_New(len);
1386 if (tuple == NULL) {
1396 Py_DECREF(tuple);
1409 PyTuple_SET_ITEM(tuple, i, u); // Steals reference of u.
1414 // key tuple. Caller should get merged frozenset from the key tuple.
1415 PyObject *new = PyFrozenSet_New(tuple);
1416 Py_DECREF(tuple);
4023 /* Always emit a warning if the test is a non-zero length tuple */
4380 int build, int add, int extend, int tuple)
4394 if (tuple && !pushed) {
4406 if (tuple) {
4426 if (tuple) {
4456 if (tuple) {
5938 "starred assignment target must be in a list or tuple");
6598 // TOS is now a tuple of (nargs + nattrs) attributes (or None):
6620 // Success! Pop the tuple of attributes:
6660 // Collect all of the keys into a tuple for MATCH_KEYS and
6711 // There's now a tuple of keys and a tuple of values on top of the subject:
6717 // So far so good. Use that tuple of values on the stack to match
6727 // the tuple of keys and the subject:
7825 PyObject *tuple, *k, *v;
7828 tuple = PyTuple_New(size);
7829 if (tuple == NULL)
7836 PyTuple_SET_ITEM(tuple, i - offset, k);
7838 return tuple;
8002 consts = PyList_AsTuple(constslist); /* PyCode_New requires a tuple */
8550 /* Buildup new tuple of constants */