Searched refs:PyContextVar_Get (Results 1 – 5 of 5) sorted by relevance
56 PyAPI_FUNC(int) PyContextVar_Get(
119 .. c:function:: int PyContextVar_Get(PyObject *var, PyObject *default_value, PyObject **value)
177 PyContextVar_Get(PyObject *ovar, PyObject *def, PyObject **val) in PyContextVar_Get() function951 if (PyContextVar_Get((PyObject *)self, default_value, &val) < 0) { in _contextvars_ContextVar_get_impl()
388 PyContextVar_Get:int:::389 PyContextVar_Get:PyObject*:var:0:390 PyContextVar_Get:PyObject*:default_value:0:391 PyContextVar_Get:PyObject**:value:+1:???
1517 if (PyContextVar_Get(current_context_var, NULL, &tl_context) < 0) { in current_context()