EventLoop instance
Kivy Exception Manager instance
Base handler that catch exception in runTouchApp(). You can derivate and use it like this
class E(ExceptionHandler):
def handle_exception(self, inst):
Logger.exception(inst)
return ExceptionManager.PASS
ExceptionManager.add_handler(E())
All exceptions will be set to PASS, and logged to console !
Handle one exception, default return ExceptionManager.STOP
Static main function that starts the application loop. You got some magic things, if you are using argument like this :
Parameters : |
|
---|
Stop the current application by leaving the main loop