westonpace commented on issue #36101:
URL: https://github.com/apache/arrow/issues/36101#issuecomment-1604620415
Do you have a repeatable example? I find that python's garbage collector is
difficult to predict in complex cases. For example:
```
def destroy_table(table):
del table
```
This method will never actually delete `table` because there will be at
least one additional reference to it...
```
table = ...
destroy_table(table)
print(table) # table is still valid
```
So I think we will need an updated example to understand what is not working.
--
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]