Lines Matching defs:obj
177 write_str(stringio *self, PyObject *obj)
187 self->decoder, obj, 1 /* always final */);
190 decoded = obj;
524 s as obj: object
534 _io_StringIO_write(stringio *self, PyObject *obj)
540 if (!PyUnicode_Check(obj)) {
542 Py_TYPE(obj)->tp_name);
545 if (PyUnicode_READY(obj))
548 size = PyUnicode_GET_LENGTH(obj);
550 if (size > 0 && write_str(self, obj) < 0)