Lines Matching defs:value
774 /* Account for value popped by yield */
782 PyObject *value = exc_info->exc_value;
786 Py_XDECREF(value);
1147 PyObject *value = fast[i];
1151 assert(value != NULL && PyCell_Check(value));
1152 value = PyCell_GET(value);
1159 if (value != NULL) {
1160 if (PyCell_Check(value) &&
1163 value = PyCell_GET(value);
1166 // with the initial value set when the frame was created...
1167 // (unlikely) ...or it was set to some initial value by
1173 assert(value == NULL);
1175 if (value == NULL) {
1186 if (PyObject_SetItem(locals, name, value) != 0) {
1245 PyObject *value = PyObject_GetItem(locals, name);
1247 if (value == NULL) {
1269 // initial value by an earlier call to PyFrame_LocalsToFast().
1273 if (value != oldvalue) {
1275 Py_XINCREF(value);
1276 PyCell_SET(cell, value);
1279 else if (value != oldvalue) {
1280 Py_XINCREF(value);
1281 Py_XSETREF(fast[i], value);
1283 Py_XDECREF(value);