Example #1
0
 def _keyPressed(self, ch, scimoz, style_info):
     # This returns True if it did something....
     try:
         self._keyPressedAux(ch, scimoz, style_info)
     except:
         log.exception("_keyPressed threw an exception")
     # Always have the base class do its thing
     KoLanguageBase._keyPressed(self, ch, scimoz, style_info)
 def _keyPressed(self, ch, scimoz, style_info):
     # This returns True if it did something....
     try:
         self._keyPressedAux(ch, scimoz, style_info)
     except:
         log.exception("_keyPressed threw an exception")
     # Always have the base class do its thing
     return KoLanguageBase._keyPressed(self, ch, scimoz, style_info)