Created module shutdown function necessary to avoid call python functions before module exit.

Reviewer: Luciano Wolf <luciano.wolf@openbossa.org>
          Hugo Parente Lima <hugo.pl@gmail.com>
This commit is contained in:
Renato Filho 2010-09-08 19:32:33 -03:00
commit 63cacc4411
4 changed files with 17 additions and 1 deletions

4
PySide/private.py Normal file
View file

@ -0,0 +1,4 @@
import atexit
from QtCore import __moduleShutdown
atexit.register(__moduleShutdown)