mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
10 lines
83 B
Python
10 lines
83 B
Python
import atexit
|
|
import sys
|
|
|
|
|
|
def myexit():
|
|
sys.exit(2)
|
|
|
|
|
|
atexit.register(myexit)
|