bombaci-vsc

Results 3 comments of bombaci-vsc

I don't know why the garbage collection would set the `BaseReader` reference to `None`. If you replace `BaseReader.close(self)` with `super().close()`, does the error go away?

Unfortunately python does not guarantee that `__del__` methods will work during shutdown. See the second bullet of the warning on [`__del__`’s documentation](https://docs.python.org/3/reference/datamodel.html#object.__del__) ![image](https://github.com/user-attachments/assets/29817095-dcc0-423e-bd51-24acaccb9048) Unfortunately, I don’t think it is practical...