Lines Matching defs:tuple
473 be lists. SplitObj walks through a nested tuple, finding string
485 /* Recursively invoke SplitObj for all tuple items.
1088 PyTuple_Check(value) ? "tuple is too long" :
1392 PyTuple_Check(args) ? "tuple is too long" :
1517 /* If args is a single tuple, replace with contents of tuple */
2404 * Tkapp_CreateCommand() that the client data is a two-tuple
3104 PyObject* tuple;
3112 /* expand tuple to hold (at least) size new items.
3122 return _PyTuple_Resize(&context->tuple, maxsize) >= 0;
3128 /* add tuple or list to argument tuple (recursively) */
3142 /* copy items to output tuple */
3153 PyTuple_SET_ITEM(context->tuple,
3184 context.tuple = PyTuple_New(context.maxsize);
3185 if (!context.tuple)
3193 if (_PyTuple_Resize(&context.tuple, context.size))
3196 return context.tuple;