Home
last modified time | relevance | path

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

/external/python/cpython3/Include/
Dcontext.h37 PyAPI_FUNC(PyObject *) PyContextVar_New(
/external/python/cpython3/Doc/c-api/
Dcontextvars.rst112 .. c:function:: PyObject *PyContextVar_New(const char *name, PyObject *def)
/external/python/cpython3/Python/
Dcontext.c163 PyContextVar_New(const char *name, PyObject *def) in PyContextVar_New() function
/external/python/cpython3/Doc/data/
Drefcounts.dat375 PyContextVar_New:PyObject*::+1:
376 PyContextVar_New:const char*:name::
377 PyContextVar_New:PyObject*:def:+1:
/external/python/cpython3/Modules/_decimal/
D_decimal.c5542 current_context_var = PyContextVar_New("decimal_context", NULL); in PyInit__decimal()