(self, *args)
| 324 | def test_file_error_python_exception(): |
| 325 | class BogusFile(io.BytesIO): |
| 326 | def read(self, *args): |
| 327 | raise ZeroDivisionError("zorglub") |
| 328 | |
| 329 | def seek(self, *args): |
| 330 | raise ZeroDivisionError("zorglub") |
no outgoing calls
no test coverage detected