Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
D_collectionsmodule.c1318 static PyTypeObject defdict_type; /* Forward */ variable
1555 static PyTypeObject defdict_type = { variable
1621 defdict_type.tp_base = &PyDict_Type; in init_collections()
1622 if (PyType_Ready(&defdict_type) < 0) in init_collections()
1624 Py_INCREF(&defdict_type); in init_collections()
1625 PyModule_AddObject(m, "defaultdict", (PyObject *)&defdict_type); in init_collections()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
D_collectionsmodule.c1386 static PyTypeObject defdict_type; /* Forward */ variable
1627 static PyTypeObject defdict_type = { variable
1693 defdict_type.tp_base = &PyDict_Type; in init_collections()
1694 if (PyType_Ready(&defdict_type) < 0) in init_collections()
1696 Py_INCREF(&defdict_type); in init_collections()
1697 PyModule_AddObject(m, "defaultdict", (PyObject *)&defdict_type); in init_collections()