(self)
| 52 | return tsv_info |
| 53 | |
| 54 | def close(self): |
| 55 | if self._fp is not None: |
| 56 | self._fp.close() |
| 57 | del self._fp |
| 58 | del self._lineidx |
| 59 | |
| 60 | self._fp = None |
| 61 | self._lineidx = None |
| 62 | |
| 63 | def _ensure_lineidx_loaded(self): |
| 64 | if not op.isfile(self.lineidx) and not op.islink(self.lineidx): |
nothing calls this directly
no outgoing calls
no test coverage detected