MCPcopy Index your code
hub / github.com/algorithmiaio/algorithmia-python / readlines

Method readlines

Algorithmia/datafile.py:326–333  ·  view source on GitHub ↗
(self, __hint=None)

Source from the content-addressed store, hash-verified

324 return output
325
326 def readlines(self, __hint=None):
327 if not self.local_file:
328 self.local_file = self.getFile()
329 if __hint:
330 output = self.local_file.readlines(__hint)
331 else:
332 output = self.local_file.readlines()
333 return output
334
335 def tell(self):
336 if not self.local_file:

Callers

nothing calls this directly

Calls 1

getFileMethod · 0.45

Tested by

no test coverage detected