Home
last modified time | relevance | path

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

/third_party/python/Include/cpython/
Ddictobject.h56 PyAPI_FUNC(PyObject *) _PyDict_Pop(PyObject *, PyObject *, PyObject *);
/third_party/python/Modules/
D_threadmodule.c860 PyObject *v = _PyDict_Pop(tstate->dict, self->key, Py_None); in local_clear()
Dsocketmodule.c363 PyObject *v = _PyDict_Pop(dict, flag_name, Py_None); in remove_unusable_flags()
/third_party/python/Python/
Dimport.c668 PyObject *mod = _PyDict_Pop(modules, name, Py_None); in remove_module()
Dsysmodule.c122 v = _PyDict_Pop(sd, key, Py_None); in sys_set_object()
/third_party/python/Objects/
Ddictobject.c1944 _PyDict_Pop(PyObject *dict, PyObject *key, PyObject *deflt) in _PyDict_Pop() function
3159 return _PyDict_Pop((PyObject*)self, key, default_value); in dict_pop_impl()