Lines Matching defs:line
1066 /* First, try to find a line in the buffer. This can run unlocked because
1329 PyObject *line;
1338 line = _buffered_readline(self, -1);
1341 line = PyObject_CallMethodNoArgs((PyObject *)self,
1343 if (line && !PyBytes_Check(line)) {
1346 "not '%.200s'", Py_TYPE(line)->tp_name);
1347 Py_DECREF(line);
1352 if (line == NULL)
1355 if (PyBytes_GET_SIZE(line) == 0) {
1357 Py_DECREF(line);
1361 return line;