# HG changeset patch # User Drew Perttula # Date 1401771476 0 # Node ID e6121f8a9f873c30f5305040538077d849829638 # Parent 2f492b4ac30138912360a5e8cb5cad8099076f1b always use faulthandler.enable(). so cool Ignore-this: 4305391ff16141c9b223e7b2ecb6140b diff -r 2f492b4ac301 -r e6121f8a9f87 bin/run_local.py --- a/bin/run_local.py Mon Jun 02 07:47:00 2014 +0000 +++ b/bin/run_local.py Tue Jun 03 04:57:56 2014 +0000 @@ -16,7 +16,8 @@ Failure(val, exc, tb).printDetailedTraceback() Tkinter.Tk.report_callback_exception = rce -import coloredlogs, logging, time +import coloredlogs, logging, time, faulthandler +faulthandler.enable() log = logging.getLogger() class CSH(coloredlogs.ColoredStreamHandler): diff -r 2f492b4ac301 -r e6121f8a9f87 pydeps --- a/pydeps Mon Jun 02 07:47:00 2014 +0000 +++ b/pydeps Tue Jun 03 04:57:56 2014 +0000 @@ -16,4 +16,5 @@ python-dateutil==2.2 txosc==0.2.0 service_identity==0.2 -Pillow==2.4.0 \ No newline at end of file +Pillow==2.4.0 +faulthandler==2.3 \ No newline at end of file