|
|
|
|
|
by westurner
404 days ago
|
|
Is there a good way to add __del__() methods or to wrap Context Manager __enter__()/__exit__() methods around objects that never needed them because of the gc? Hadn't seen this: import gc
gc.disable()
Cython has __dealloc__() instead of __del__()? |
|