(self, __hint=None)
| 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: |