File: atexit_example.py

package info (click to toggle)
pyotherside 1.6.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 880 kB
  • sloc: cpp: 2,869; python: 475; makefile: 152; sh: 35
file content (10 lines) | stat: -rw-r--r-- 270 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
# This examples shows how to do cleanups and other things when
# the application exists by using pyside.atexit().

import pyotherside

def called_when_exiting():
    print('Now exiting the application...')

pyotherside.atexit(called_when_exiting)
print('python loaded')