summaryrefslogtreecommitdiffstats
path: root/src/tdedesigner.py
blob: 93cb6bd399d66a72f4c16b180223fc25dac3a22c (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 builtins as __builtin__
import tqtuicompiler

python_import = __builtin__.__import__
def load(name, glob = None, loc = None, fromlist = tuple(), level = 0):
    tqtuicompiler.DynamicImport((name,),True)
    return python_import(name, glob, loc, fromlist, level)
__builtin__.__import__ = load