I have a python module written in C, and I would like to add a function that is called when the module is unloaded. I obviously have an initfoo
function to initialize the module -- is there a way to tell python to call a finifoo
function when it's uninitializing the module?
Is atexit
my only option?