integrated object selector into edit family

svn: r5804
This commit is contained in:
Richard Taylor
2006-01-20 10:30:35 +00:00
parent c5fc889410
commit 6fee6a5f79
16 changed files with 405 additions and 39 deletions

View File

@@ -28,6 +28,7 @@ import os
import locale
import signal
import gettext
import exceptions
import logging
log = logging.getLogger(".")
@@ -124,6 +125,9 @@ def setup_logging():
# put a hook on to catch any completly unhandled exceptions.
def exc_hook(type, value, tb):
if type == KeyboardInterrupt:
# Ctrl-C is not a bug.
return
import traceback
log.error("Unhandled exception\n" +
"".join(traceback.format_exception(type, value, tb)))