r"""Reads the next line from the file. Leaves the '\n' at the end.
(self)
| 174 | pywrap_tensorflow.Set_TF_Status_from_Status(status, ret_status) |
| 175 | |
| 176 | def readline(self): |
| 177 | r"""Reads the next line from the file. Leaves the '\n' at the end.""" |
| 178 | self._preread_check() |
| 179 | return self._prepare_value(self._read_buf.ReadLineAsString()) |
| 180 | |
| 181 | def readlines(self): |
| 182 | """Returns all lines from the file in a list.""" |