Home
last modified time | relevance | path

Searched refs:defdict_type (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Modules/
D_collectionsmodule.c1454 static PyTypeObject defdict_type; /* Forward */ variable
1697 static PyTypeObject defdict_type = { variable
1763 defdict_type.tp_base = &PyDict_Type; in init_collections()
1764 if (PyType_Ready(&defdict_type) < 0) in init_collections()
1766 Py_INCREF(&defdict_type); in init_collections()
1767 PyModule_AddObject(m, "defaultdict", (PyObject *)&defdict_type); in init_collections()
/external/python/cpython3/Modules/
D_collectionsmodule.c1978 static PyTypeObject defdict_type; /* Forward */ variable
2207 static PyTypeObject defdict_type = { variable
2404 defdict_type.tp_base = &PyDict_Type; in PyInit__collections()
2405 if (PyType_Ready(&defdict_type) < 0) in PyInit__collections()
2407 Py_INCREF(&defdict_type); in PyInit__collections()
2408 PyModule_AddObject(m, "defaultdict", (PyObject *)&defdict_type); in PyInit__collections()