Home
last modified time | relevance | path

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

/third_party/python/Python/
Dcontext.c323 if (tok->tok_oldval == NULL) { in PyContextVar_Reset()
327 return contextvar_set(var, tok->tok_oldval); in PyContextVar_Reset()
1099 Py_CLEAR(self->tok_oldval); in token_tp_clear()
1108 Py_VISIT(self->tok_oldval); in token_tp_traverse()
1178 if (self->tok_oldval == NULL) { in token_get_old_value()
1182 Py_INCREF(self->tok_oldval); in token_get_old_value()
1183 return self->tok_oldval; in token_get_old_value()
1230 tok->tok_oldval = val; in token_new()
/third_party/python/Include/internal/
Dpycore_context.h34 PyObject *tok_oldval; member