-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdebug.py
32 lines (27 loc) · 1.16 KB
/
debug.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# If you are on the developers list below, and you have imported this file, any uncaught exception
# will go to the Python debugger.
# based on http://stackoverflow.com/questions/242485/starting-python-debugger-automatically-on-error
try:
import getpass, os
developers = [ 'painter', 'painter1' ]
if (getpass.getuser() in developers and os.environ.get("PY_DEBUG_EXCEP",True)!='False')\
or os.environ.get("PY_DEBUG_EXCEP",False)=='True':
import sys
def info(type, value, tb):
if hasattr(sys, 'ps1') or not sys.stderr.isatty():
# we are in interactive mode or we don't have a tty-like
# device, so we call the default hook
sys.__excepthook__(type, value, tb)
else:
import traceback, pdb
# we are NOT in interactive mode, print the exception...
traceback.print_exception(type, value, tb)
print
# ...then start the debugger in post-mortem mode.
# pdb.pm() # deprecated
pdb.post_mortem(tb) # more "modern"
sys.excepthook = info
else:
pass
except:
pass