| 170 | |
| 171 | |
| 172 | class StreamWrapper(ArrowStreamExportable): |
| 173 | def __init__(self, stream: ArrowStreamExportable) -> None: |
| 174 | self.stream = stream |
| 175 | |
| 176 | def __arrow_c_stream__(self, requested_schema: Union[object, None] = None) -> object: |
| 177 | return self.stream.__arrow_c_stream__(requested_schema=requested_schema) |
| 178 | |
| 179 | |
| 180 | @pytest.mark.parametrize("pyarrow_type", _supported_pyarrow_types, ids=str) |
no outgoing calls