Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/
DcPickle.c814 PyObject *py_ob_id = 0, *memo_len = 0, *t = 0; in put2() local
830 if (!( py_ob_id = PyLong_FromVoidPtr(ob))) in put2()
844 if (PyDict_SetItem(self->memo, py_ob_id, t) < 0) in put2()
881 Py_XDECREF(py_ob_id); in put2()
2538 PyObject *py_ob_id = PyLong_FromVoidPtr(ob); in save_reduce() local
2539 if (!py_ob_id) in save_reduce()
2541 if (PyDict_GetItem(self->memo, py_ob_id)) { in save_reduce()
2544 get(self, py_ob_id) < 0) { in save_reduce()
2545 Py_DECREF(py_ob_id); in save_reduce()
2548 Py_DECREF(py_ob_id); in save_reduce()
[all …]