(self)
| 160 | self.size_read = pos |
| 161 | |
| 162 | def tell(self): |
| 163 | if self.closed: |
| 164 | raise ValueError("I/O operation on closed file") |
| 165 | return self.size_read |
| 166 | |
| 167 | def read(self, size=-1): |
| 168 | """Read at most size bytes from the chunk. |
no outgoing calls
no test coverage detected