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.
pytde/importTest.py

23 lines
527 B

print "\nTesting PyKDE module imports\n"
try:
import pykdeconfig
except:
print "Can't find pykdeconfig.py - please check installation"
raise
pykdecfg = pykdeconfig.Configuration ()
#modules = ["dcop", "kdecore", "kdesu", "kdefx", "kdeui", "kio", "kfile", "kparts", "khtml", "kjs", "kspell", "kdeprint"]
print "Modules built:"
print " ",pykdecfg.pykde_modules
print
print "Importing:"
print
for mod in pykdecfg.pykde_modules.split():
print mod
if mod != "kdesu":
exec ("import " + mod)
print