What is the best way to properly finalize python script when sys.exit() is called?
For example I have an app which: - opened log file - opened some USB gadget - decide it's time to close the app - call sys.exit(-1) - (or alternatively it throw harsh exception - but I prefer first way as I was little piggy and some parts of code actually catch all exceptions, which would stop my termination exception...)
Then I would need some finalize() function which would be certainly called before exiting the interpreter. Finalize() would free USB gadget and close log file in exactly this order.
I tried def del but it is not called upon sys.exit and furthermore I can not decide in which order _del_s would be called.
Is there some salvation for me? Or do I have to do: 1. Top most try-catch-finally 2. Do the exit with some specific Exception 3. everywhere on each exception catch specify exactly what I'm catching?
See python's
with
statement.No matter whether the code throws exception or runs as desired, the USB lock is always released.