Searched refs:FlagsType (Results 1 - 2 of 2) sorted by relevance

/external/python/cpython2/Python/
H A Dsysmodule.c1206 static PyTypeObject FlagsType = {0, 0, 0, 0, 0, 0}; variable
1250 seq = PyStructSequence_New(&FlagsType);
1501 if (FlagsType.tp_name == 0)
1502 PyStructSequence_InitType(&FlagsType, &flags_desc);
1505 FlagsType.tp_init = NULL;
1506 FlagsType.tp_new = NULL;
/external/python/cpython3/Python/
H A Dsysmodule.c1666 static PyTypeObject FlagsType; variable
1700 seq = PyStructSequence_New(&FlagsType);
2033 if (FlagsType.tp_name == 0) {
2034 if (PyStructSequence_InitType2(&FlagsType, &flags_desc) < 0)
2039 FlagsType.tp_init = NULL;
2040 FlagsType.tp_new = NULL;
2041 res = PyDict_DelItemString(FlagsType.tp_dict, "__new__");

Completed in 71 milliseconds