Skip to content

Instantly share code, notes, and snippets.

@stuaxo
Created February 13, 2015 15:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stuaxo/a5e234a6c33975458bce to your computer and use it in GitHub Desktop.
Save stuaxo/a5e234a6c33975458bce to your computer and use it in GitHub Desktop.
Testing vext
if __name__ == '__main__':
try:
for name in ['cairo', 'gtk', 'pygtk', 'hello']:
try:
m = __import__(name)
print '%s: %s' % (name, m)
except Exception as e:
print '%s: %s' % (e.__class__.__name__, str(e))
print ''
def higtk():
from helloworld import HelloWorld
hello = HelloWorld()
hello.main()
import ipdb
ipdb.set_trace()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment