Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/
DcPickle.c4235 PyObject *py_key = 0, *value = 0; in load_binget() local
4243 if (!( py_key = PyInt_FromLong((long)key))) return -1; in load_binget()
4245 value = PyDict_GetItem(self->memo, py_key); in load_binget()
4247 PyErr_SetObject(BadPickleGet, py_key); in load_binget()
4255 Py_DECREF(py_key); in load_binget()
4263 PyObject *py_key = 0, *value = 0; in load_long_binget() local
4280 if (!( py_key = PyInt_FromLong((long)key))) return -1; in load_long_binget()
4282 value = PyDict_GetItem(self->memo, py_key); in load_long_binget()
4284 PyErr_SetObject(BadPickleGet, py_key); in load_long_binget()
4292 Py_DECREF(py_key); in load_long_binget()
[all …]