Close the wrapped file. Using the stream after closing raises an exception.
(self)
| 200 | return cls(open(path, "rb")) |
| 201 | |
| 202 | def close(self): |
| 203 | """ |
| 204 | Close the wrapped file. Using the stream after closing raises an |
| 205 | exception. |
| 206 | """ |
| 207 | self._file.close() |
| 208 | |
| 209 | def read(self, offset, length): |
| 210 | """ |
no outgoing calls