(self, *args)
| 2109 | return super().read(*args) |
| 2110 | |
| 2111 | def readinto(self, *args): |
| 2112 | time.sleep(0.001) |
| 2113 | return super().readinto(*args) |
| 2114 | |
| 2115 | for i in range(20): |
| 2116 | with pytest.raises(pa.ArrowInvalid): |
no outgoing calls
no test coverage detected