Lines Matching defs:line
68 /* Internal routine to get a line from the buffer of a BytesIO
83 /* Move to the end of the line, up to the end of the string, s. */
93 the line. */
467 Next line from the file, as a bytes object.
470 number of bytes to return (an incomplete line may be returned then).
492 List of bytes objects, each a line from the file.
504 PyObject *result, *line;
532 line = PyBytes_FromStringAndSize(output, n);
533 if (!line)
535 if (PyList_Append(result, line) == -1) {
536 Py_DECREF(line);
539 Py_DECREF(line);