Lines Matching refs:line
84 /* Reserve one more char for line ending detection. */
367 /* If we haven't found any line ending, we just return everything
399 PyObject *line;
407 line = _stringio_readline(self, -1);
411 line = PyObject_CallMethodNoArgs((PyObject *)self,
413 if (line && !PyUnicode_Check(line)) {
416 "not '%.200s'", Py_TYPE(line)->tp_name);
417 Py_DECREF(line);
422 if (line == NULL)
425 if (PyUnicode_GET_LENGTH(line) == 0) {
427 Py_DECREF(line);
431 return line;