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.
26 lines
1.3 KiB
26 lines
1.3 KiB
15 years ago
|
#!/usr/bin/python
|
||
|
############################################################################
|
||
11 years ago
|
# tdedesigner - description #
|
||
15 years ago
|
# ------------------------------ #
|
||
|
# 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 qtuicompiler
|
||
|
|
||
|
python_import = __builtin__.__import__
|
||
|
def load(*args):
|
||
|
qtuicompiler.DynamicImport(args,True)
|
||
|
return apply(python_import,args)
|
||
|
__builtin__.__import__ = load
|