(self, size=-1)
| 1777 | # 3, no .fileno() method |
| 1778 | class C: |
| 1779 | def read(self, size=-1): |
| 1780 | return b'123' |
| 1781 | with ZstdFile(C(), 'rb') as f: |
| 1782 | with self.assertRaisesRegex(AttributeError, r'fileno'): |
| 1783 | f.fileno() |
no outgoing calls
no test coverage detected