Lines Matching defs:tmp
1513 PyObject *res = NULL, *data = NULL, *tmp = NULL, *chunks = NULL, *readall;
1526 tmp = buffered_flush_and_rewind_unlocked(self);
1527 if (tmp == NULL)
1529 Py_CLEAR(tmp);
1537 tmp = _PyObject_CallNoArgs(readall);
1539 if (tmp == NULL)
1541 if (tmp != Py_None && !PyBytes_Check(tmp)) {
1546 res = tmp;
1548 if (tmp != Py_None) {
1549 PyBytes_Concat(&data, tmp);
1581 tmp = _PyBytes_Join((PyObject *)&_Py_SINGLETON(bytes_empty), chunks);
1582 res = tmp;
1594 Py_XDECREF(tmp);