MCPcopy Index your code
hub / github.com/sqlmapproject/sqlmap / readlines

Method readlines

thirdparty/keepalive/keepalive.py:469–479  ·  view source on GitHub ↗
(self, sizehint = 0)

Source from the content-addressed store, hash-verified

467 return data
468
469 def readlines(self, sizehint = 0):
470 total = 0
471 list = []
472 while 1:
473 line = self.readline()
474 if not line: break
475 list.append(line)
476 total += len(line)
477 if sizehint and total >= sizehint:
478 break
479 return list
480
481
482class HTTPConnection(_http_client.HTTPConnection):

Callers

nothing calls this directly

Calls 2

readlineMethod · 0.95
appendMethod · 0.45

Tested by

no test coverage detected