Fokko opened a new pull request, #5436:
URL: https://github.com/apache/iceberg/pull/5436
This way we can nicely use context managers:
```python
f = PyArrowInputFile(..).open()
f.read()
f.close()
```
turns into:
```python
with PyArrowInputFile(..).open() as f:
f.read()
```
This way we don't forget to close any files. This is very easy to do and was
actually happening when reading the manifests.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]