Home
last modified time | relevance | path

Searched refs:PyContextToken_Type (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython3/Modules/
D_contextvarsmodule.c68 Py_INCREF(&PyContextToken_Type); in PyInit__contextvars()
70 (PyObject *)&PyContextToken_Type) < 0) in PyInit__contextvars()
72 Py_DECREF(&PyContextToken_Type); in PyInit__contextvars()
/external/python/cpython3/Include/
Dcontext.h16 PyAPI_DATA(PyTypeObject) PyContextToken_Type;
22 #define PyContextToken_CheckExact(o) (Py_TYPE(o) == &PyContextToken_Type)
/external/python/cpython3/Doc/c-api/
Dcontextvars.rst53 .. c:var:: PyTypeObject PyContextToken_Type
72 Return true if *o* is of type :c:data:`PyContextToken_Type`.
/external/python/cpython3/Python/
Dcontext.c1168 PyTypeObject PyContextToken_Type = { variable
1187 PyContextToken *tok = PyObject_GC_New(PyContextToken, &PyContextToken_Type); in token_new()
1291 (PyType_Ready(&PyContextToken_Type) < 0) || in _PyContext_Init()
1299 PyContextToken_Type.tp_dict, "MISSING", missing)) in _PyContext_Init()