Home
last modified time | relevance | path

Searched refs:tok_oldval (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Python/
Dcontext.c317 if (tok->tok_oldval == NULL) { in PyContextVar_Reset()
321 return contextvar_set(var, tok->tok_oldval); in PyContextVar_Reset()
1083 Py_CLEAR(self->tok_oldval); in token_tp_clear()
1092 Py_VISIT(self->tok_oldval); in token_tp_traverse()
1162 if (self->tok_oldval == NULL) { in token_get_old_value()
1166 Py_INCREF(self->tok_oldval); in token_get_old_value()
1167 return self->tok_oldval; in token_get_old_value()
1214 tok->tok_oldval = val; in token_new()
/external/python/cpython3/Include/internal/
Dpycore_context.h34 PyObject *tok_oldval; member