diff options
Diffstat (limited to 'src/tdedesigner.py')
-rw-r--r-- | src/tdedesigner.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/tdedesigner.py b/src/tdedesigner.py new file mode 100644 index 0000000..ca58728 --- /dev/null +++ b/src/tdedesigner.py @@ -0,0 +1,25 @@ +#!/usr/bin/python +############################################################################ +# tdedesigner - description # +# ------------------------------ # +# begin : Thu Apr 21 2005 # +# copyright : (C) 2005 by Simon Edwards # +# email : [email protected] # +# # +########################################################################### +# # +# This program is free software; you can redistribute it and/or modify # +# it under the terms of the GNU Library General Public License as # +# published by the Free Software Foundation; either version 2 of the # +# License, or (at your option) any later version. # +# # +########################################################################### + +import __builtin__ +import qtuicompiler + +python_import = __builtin__.__import__ +def load(*args): + qtuicompiler.DynamicImport(args,True) + return apply(python_import,args) +__builtin__.__import__ = load |