Home
last modified time | relevance | path

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

/external/python/cpython3/Include/
Dodictobject.h15 PyAPI_DATA(PyTypeObject) PyODict_Type;
21 #define PyODict_Check(op) PyObject_TypeCheck(op, &PyODict_Type)
22 #define PyODict_CheckExact(op) (Py_TYPE(op) == &PyODict_Type)
/external/python/cpython3/Objects/
Dodictobject.c1558 PyTypeObject PyODict_Type = { variable
1608 return PyDict_Type.tp_new(&PyODict_Type, NULL, NULL); in PyODict_New()
Dobject.c1795 if (PyType_Ready(&PyODict_Type) < 0) in _Py_ReadyTypes()
/external/python/cpython3/PC/
Dpython3.def425 PyODict_Type=python37.PyODict_Type DATA
/external/python/cpython3/Modules/
D_collectionsmodule.c2410 Py_INCREF(&PyODict_Type); in PyInit__collections()
2411 PyModule_AddObject(m, "OrderedDict", (PyObject *)&PyODict_Type); in PyInit__collections()