()
| 245 | |
| 246 | |
| 247 | def test_python_file_correct_abc(): |
| 248 | with pa.PythonFile(BytesIO(b''), mode='r') as f: |
| 249 | assert isinstance(f, BufferedIOBase) |
| 250 | assert isinstance(f, IOBase) |
| 251 | |
| 252 | |
| 253 | def test_python_file_iterable(): |
nothing calls this directly
no test coverage detected