home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.6)
-
- from PyQt4.uic.exceptions import NoSuchWidgetError
-
- def invoke(driver):
- exit_status = 1
-
- try:
- exit_status = driver.invoke()
- except IOError:
- e = None
- driver.on_IOError(e)
- except SyntaxError:
- e = None
- driver.on_SyntaxError(e)
- except NoSuchWidgetError:
- e = None
- driver.on_NoSuchWidgetError(e)
- except Exception:
- e = None
- driver.on_Exception(e)
-
- return exit_status
-
-