Allow pass-through read() call.
(self, count)
| 20 | self._base_offset = base_offset |
| 21 | |
| 22 | def read(self, count): |
| 23 | """Allow pass-through read() call.""" |
| 24 | return self._stream.read(count) |
| 25 | |
| 26 | def read_byte(self, base, offset=0): |
| 27 | """Return the int value of the byte at the file position defined by |
no outgoing calls