You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
defregister(func, *args, **kwargs): # real signature unknown; restored from __doc__""" register(func, *args, **kwargs) -> func Register a function to be executed upon normal program termination func - function to be called at exit args - optional arguments to pass to func kwargs - optional keyword arguments to pass to func func is returned to facilitate usage as a decorator. """pass
This executes on normal program termination, not on normal HTTP request completion
The text was updated successfully, but these errors were encountered:
atexit.register(self.cleanup_pdf_doc)
atexit
This executes on normal program termination, not on normal HTTP request completion
The text was updated successfully, but these errors were encountered: