Searched refs:PyContextVar_Type (Results 1 – 5 of 5) sorted by relevance
13 PyAPI_DATA(PyTypeObject) PyContextVar_Type;21 #define PyContextVar_CheckExact(o) Py_IS_TYPE(o, &PyContextVar_Type)
36 if (PyModule_AddType(m, &PyContextVar_Type) < 0) { in _contextvars_exec()
49 .. c:var:: PyTypeObject PyContextVar_Type67 Return true if *o* is of type :c:data:`PyContextVar_Type`. *o* must not be
815 PyContextVar *var = PyObject_GC_New(PyContextVar, &PyContextVar_Type); in contextvar_new()1057 PyTypeObject PyContextVar_Type = { variable1325 (PyType_Ready(&PyContextVar_Type) < 0) || in _PyContext_Init()
902 Python/context.c:PyContextVar_Type PyTypeObject PyContextVar_Type