(lazy_file, off, bs, delimiter)
| 188 | |
| 189 | |
| 190 | def read_block_from_file(lazy_file, off, bs, delimiter): |
| 191 | with copy.copy(lazy_file) as f: |
| 192 | if off == 0 and bs is None: |
| 193 | return f.read() |
| 194 | return read_block(f, off, bs, delimiter) |
nothing calls this directly
no test coverage detected
searching dependent graphs…