Home
last modified time | relevance | path

Searched refs:PyContextVar (Results 1 – 6 of 6) sorted by relevance

/third_party/python/Python/
Dcontext.c57 token_new(PyContext *ctx, PyContextVar *var, PyObject *val);
59 static PyContextVar *
63 contextvar_set(PyContextVar *var, PyObject *val);
66 contextvar_del(PyContextVar *var);
189 PyContextVar *var = contextvar_new(pyname, def); in PyContextVar_New()
199 PyContextVar *var = (PyContextVar *)ovar; in PyContextVar_Get()
262 PyContextVar *var = (PyContextVar *)ovar; in PyContextVar_Set()
299 PyContextVar *var = (PyContextVar *)ovar; in PyContextVar_Reset()
728 contextvar_set(PyContextVar *var, PyObject *val) in contextvar_set()
753 contextvar_del(PyContextVar *var) in contextvar_del()
[all …]
/third_party/python/Python/clinic/
Dcontext.c.h133 _contextvars_ContextVar_get_impl(PyContextVar *self, PyObject *default_value);
136 _contextvars_ContextVar_get(PyContextVar *self, PyObject *const *args, Py_ssize_t nargs) in _contextvars_ContextVar_get()
/third_party/python/Include/internal/
Dpycore_context.h33 PyContextVar *tok_var;
/third_party/python/Include/
Dcontext.h14 typedef struct _pycontextvarobject PyContextVar; typedef
/third_party/python/Doc/c-api/
Dcontextvars.rst15 of :c:type:`PyContext`, :c:type:`PyContextVar`, and
36 .. c:type:: PyContextVar
/third_party/python/Misc/NEWS.d/
D3.10.0b1.rst1388 The documentation on the PyContextVar C-API was clarified.