summaryrefslogtreecommitdiffstats
path: root/src/tdedesigner.py
blob: c96fa86f7a1a8c62127f8895eee3aadfcfe45f3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/python
############################################################################
# tdedesigner - description                                               #
# ------------------------------                                          #
# begin     : Thu Apr 21 2005                                             #
# copyright : (C) 2005 by Simon Edwards                                   #
# email     : simon@simonzone.com                                         #
#                                                                         #
###########################################################################
#                                                                         #
#   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 tqtuicompiler

python_import = __builtin__.__import__
def load(*args):
    tqtuicompiler.DynamicImport(args,True)
    return apply(python_import,args)
__builtin__.__import__ = load