Home
last modified time | relevance | path

Searched refs:PyContextVar_Get (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython3/Include/
Dcontext.h56 PyAPI_FUNC(int) PyContextVar_Get(
/external/python/cpython3/Doc/c-api/
Dcontextvars.rst119 .. c:function:: int PyContextVar_Get(PyObject *var, PyObject *default_value, PyObject **value)
/external/python/cpython3/Python/
Dcontext.c176 PyContextVar_Get(PyObject *ovar, PyObject *def, PyObject **val) in PyContextVar_Get() function
927 if (PyContextVar_Get((PyObject *)self, default_value, &val) < 0) { in _contextvars_ContextVar_get_impl()
/external/python/cpython3/Doc/data/
Drefcounts.dat370 PyContextVar_Get:int:::
371 PyContextVar_Get:PyObject*:var:0:
372 PyContextVar_Get:PyObject*:default_value:0:
373 PyContextVar_Get:PyObject**:value:+1:???
/external/python/cpython3/Modules/_decimal/
D_decimal.c1517 if (PyContextVar_Get(current_context_var, NULL, &tl_context) < 0) { in current_context()