You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pytdeextensions/src/tdedesigner.py

26 lines
1.4 KiB

#!/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