Lines Matching refs:value
564 {"value", T_OBJECT, offsetof(PyStopIterationObject, value), 0,
565 PyDoc_STR("generator return value")},
573 PyObject *value;
577 Py_CLEAR(self->value);
579 value = PyTuple_GET_ITEM(args, 0);
581 value = Py_None;
582 Py_INCREF(value);
583 self->value = value;
590 Py_CLEAR(self->value);
605 Py_VISIT(self->value);
993 get_matcher_type(PyObject *value,
996 assert(value);
998 if (PyFunction_Check(value)) {
1003 if (PyExceptionClass_Check(value)) {
1008 if (PyTuple_CheckExact(value)) {
1009 Py_ssize_t n = PyTuple_GET_SIZE(value);
1011 if (!PyExceptionClass_Check(PyTuple_GET_ITEM(value, i))) {
2248 "Local name referenced but not bound to a value.");
2567 "Inappropriate argument value (of correct type).");
2610 set_unicodefromstring(PyObject **attr, const char *value)
2612 PyObject *obj = PyUnicode_FromString(value);