(self)
| 171 | self.size_read = pos |
| 172 | |
| 173 | def tell(self): |
| 174 | if self.closed: |
| 175 | raise ValueError("I/O operation on closed file") |
| 176 | return self.size_read |
| 177 | |
| 178 | def read(self, size=-1): |
| 179 | """Read at most size bytes from the chunk. |
no outgoing calls
no test coverage detected