Lines Matching defs:readline
110 # maximal line length when calling readline().
214 line = fp.readline(_MAXLINE + 1)
279 line = str(self.fp.readline(_MAXLINE + 1), "iso-8859-1")
526 line = self.fp.readline(_MAXLINE + 1)
544 line = self.fp.readline(_MAXLINE + 1)
662 # Having this enables IOBase.readline() to read more than one
670 def readline(self, limit=-1):
674 # Fallback to IOBase readline which uses peek() and read()
675 return super().readline(limit)
678 result = self.fp.readline(limit)
928 line = response.fp.readline(_MAXLINE + 1)