mirror of
https://github.com/thp/pyotherside.git
synced 2025-01-17 23:22:53 +08:00
9 lines
156 B
Python
9 lines
156 B
Python
|
import pyotherside
|
||
|
|
||
|
def called_when_exiting():
|
||
|
print('Now exiting the application...')
|
||
|
|
||
|
pyotherside.atexit(called_when_exiting)
|
||
|
print('python loaded')
|
||
|
|