Searched refs:defdict_type (Results 1 – 2 of 2) sorted by relevance
1454 static PyTypeObject defdict_type; /* Forward */ variable1697 static PyTypeObject defdict_type = { variable1763 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()
1978 static PyTypeObject defdict_type; /* Forward */ variable2207 static PyTypeObject defdict_type = { variable2404 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()