Lines Matching refs:py_key
4235 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()
4386 PyObject *py_key = 0, *value = 0; in load_binput() local
4396 if (!( py_key = PyInt_FromLong((long)key))) return -1; in load_binput()
4398 len=PyDict_SetItem(self->memo, py_key, value); in load_binput()
4399 Py_DECREF(py_key); in load_binput()
4407 PyObject *py_key = 0, *value = 0; in load_long_binput() local
4425 if (!( py_key = PyInt_FromLong(key))) return -1; in load_long_binput()
4427 len=PyDict_SetItem(self->memo, py_key, value); in load_long_binput()
4428 Py_DECREF(py_key); in load_long_binput()