Lines Matching defs:maxline
101 maxline = MAXLINE
212 line = self.file.readline(self.maxline + 1)
213 if len(line) > self.maxline:
214 raise Error("got more than %d bytes" % self.maxline)
465 line = fp.readline(self.maxline + 1)
466 if len(line) > self.maxline:
467 raise Error("got more than %d bytes" % self.maxline)
526 buf = fp.readline(self.maxline + 1)
527 if len(buf) > self.maxline:
528 raise Error("got more than %d bytes" % self.maxline)