Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/
DcPickle.c819 PyObject *py_ob_id = 0, *memo_len = 0, *t = 0; in put2() local
835 if (!( py_ob_id = PyLong_FromVoidPtr(ob))) in put2()
849 if (PyDict_SetItem(self->memo, py_ob_id, t) < 0) in put2()
891 Py_XDECREF(py_ob_id); in put2()
2554 PyObject *py_ob_id = PyLong_FromVoidPtr(ob); in save_reduce() local
2555 if (!py_ob_id) in save_reduce()
2557 if (PyDict_GetItem(self->memo, py_ob_id)) { in save_reduce()
2560 get(self, py_ob_id) < 0) { in save_reduce()
2561 Py_DECREF(py_ob_id); in save_reduce()
2564 Py_DECREF(py_ob_id); in save_reduce()
[all …]