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