Home
last modified time | relevance | path

Searched refs:_PyDict_DelItemId (Results 1 – 6 of 6) sorted by relevance

/third_party/python/Include/cpython/
Ddictobject.h69 PyAPI_FUNC(int) _PyDict_DelItemId(PyObject *mp, struct _Py_Identifier *key);
/third_party/python/Modules/
D_abc.c476 if (_PyDict_DelItemId(cls->tp_dict, &PyId___abc_tpflags__) < 0) { in _abc__abc_init()
/third_party/python/Objects/
Dmoduleobject.c900 ret = _PyDict_DelItemId(dict, &PyId___annotations__); in module_set_annotations()
Dtypeobject.c654 res = _PyDict_DelItemId(type->tp_dict, &PyId___abstractmethods__); in type_set_abstractmethods()
994 result = _PyDict_DelItemId(type->tp_dict, &PyId___annotations__); in type_set_annotations()
2843 if (_PyDict_DelItemId(type->tp_dict, &PyId___qualname__) < 0) { in type_new_set_ht_name()
3050 if (_PyDict_DelItemId(type->tp_dict, &PyId___classcell__) < 0) { in type_new_set_classcell()
Ddictobject.c3620 _PyDict_DelItemId(PyObject *v, _Py_Identifier *key) in _PyDict_DelItemId() function
/third_party/python/Python/
Dbltinmodule.c153 if (_PyDict_DelItemId(mkw, &PyId_metaclass) < 0) { in builtin___build_class__()