Why does callback not called which is defined with @atexit.register at sys.exit in Python?

38 Views Asked by At

Description:

I wonder that why does callback not called which is defined with @atexit.register at sys.exit in Python?


Code 1:

import atexit
import sys
if __name__ == '__main__':
    @atexit.register
    def Func1():
        print("Func1!!!")
    sys.exit(0)

Output:

Output of Code 1


IDE:

Spyder in Anaconda Navigator with IPython 8.12.0


Interpreter:

Python 3.11.4


Any replies will be very appreciated. Thank you.

What I have tried:

Google and take a glance at:

https://docs.python.org/3/library/atexit.html

1

There are 1 best solutions below

0
On

I finally know why it does Output nothing.

Sorry for my misunderstanding of atexit module.

The following website in Ref section says that callback which is defined in atexit.register will be called iff once the Python interpreter exits.

However, in Spyder Console. When finishing execution of script, the Python interpreter does NOT exit.


Ref:

atexit function is not called when exiting the script using Ipython