Home | History | Annotate | Download | only in python2.7

Lines Matching refs:readline

215 # maximal line length when calling readline().
280 line = self.fp.readline(_MAXLINE + 1)
342 # the response are read with readline(). If the reads were
343 # buffered the readline() calls could consume some of the
365 line = self.fp.readline(_MAXLINE + 1)
414 skip = self.fp.readline(_MAXLINE + 1)
532 # XXX It would be nice to have readline and __iter__ for this, too.
585 line = self.fp.readline(_MAXLINE + 1)
622 line = self.fp.readline(_MAXLINE + 1)
759 line = response.fp.readline(_MAXLINE + 1)
1279 # The status-line parsing code calls readline(), which normally
1300 self.readline = self._file.readline
1325 def readline(self):
1327 return self._file.readline()