(self, *args)
| 2179 | return super().read(*args) |
| 2180 | |
| 2181 | def readinto(self, *args): |
| 2182 | time.sleep(0.001) |
| 2183 | return super().readinto(*args) |
| 2184 | |
| 2185 | for i in range(20): |
| 2186 | with pytest.raises(pa.ArrowInvalid): |
no outgoing calls
no test coverage detected