Searched refs:PyContextVar (Results 1 – 6 of 6) sorted by relevance
/third_party/python/Python/ |
D | context.c | 57 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/ |
D | context.c.h | 133 _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/ |
D | pycore_context.h | 33 PyContextVar *tok_var;
|
/third_party/python/Include/ |
D | context.h | 14 typedef struct _pycontextvarobject PyContextVar; typedef
|
/third_party/python/Doc/c-api/ |
D | contextvars.rst | 15 of :c:type:`PyContext`, :c:type:`PyContextVar`, and 36 .. c:type:: PyContextVar
|
/third_party/python/Misc/NEWS.d/ |
D | 3.10.0b1.rst | 1388 The documentation on the PyContextVar C-API was clarified.
|