Home | History | Annotate | Download | only in Objects

Lines Matching defs:out

100     PyObject *out;
104 out = PyString_FromString("");
107 out = PyObject_Str(PyTuple_GET_ITEM(self->args, 0));
110 out = PyObject_Str(self->args);
114 return out;
121 PyObject *out;
133 out = PyObject_Unicode(str);
135 return out;
140 out = PyUnicode_FromString("");
143 out = PyObject_Unicode(PyTuple_GET_ITEM(self->args, 0));
146 out = PyObject_Unicode(self->args);
150 return out;
589 * means we need our own __str__() which prints out the filename
1072 PyErr_SetString(PyExc_IndexError, "tuple index out of range");
1255 "Sequence index out of range.");
1945 SimpleExtendsException(PyExc_StandardError, MemoryError, "Out of memory.");