Lines Matching defs:values
904 // Return a tuple of values corresponding to keys, with error checks for
917 PyObject *values = NULL;
936 values = PyTuple_New(nkeys);
937 if (values == NULL) {
964 Py_DECREF(values);
967 values = Py_None;
970 PyTuple_SET_ITEM(values, i, value);
977 return values;
982 Py_XDECREF(values);
1245 using gcc's labels-as-values extension
1687 * These are cached values from the frame and code object. */
1710 values are not visible to the cycle GC. \
3507 PyDictValues *values = *_PyObject_ValuesPointer(owner);
3508 DEOPT_IF(values == NULL, LOAD_ATTR);
3509 res = values->values[cache->index];
3615 PyDictValues *values = *_PyObject_ValuesPointer(owner);
3616 DEOPT_IF(values == NULL, STORE_ATTR);
3621 PyObject *old_value = values->values[index];
3622 values->values[index] = value;
3624 _PyDictValues_AddToInsertionOrder(values, index);
4280 // On successful match, PUSH(values). Otherwise, PUSH(None).
4437 /* At the top of the stack are 4 values:
6271 "%U() got multiple values for argument '%S'",
6286 /* Add missing positional arguments (copy default values from defs) */
6317 /* Add missing keyword arguments (copy default values from kwdefs) */
6717 "not enough values to unpack "
6723 "not enough values to unpack "
6744 "too many values to unpack (expected %d)",
6758 "not enough values to unpack (expected at least %d, got %zd)",
7362 Silently reduce values larger than PY_SSIZE_T_MAX to PY_SSIZE_T_MAX,
7363 and silently boost values less than PY_SSIZE_T_MIN to PY_SSIZE_T_MIN.
7730 "%U got multiple values for keyword argument '%S'",