-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patherror_handling.py
72 lines (56 loc) · 2.2 KB
/
error_handling.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import sys
TRACEBACK_MAX_CHARS = 100
DEFAULT_STOP_ON_FILE_PATH = (
'/django/core/handlers/base.py',
'django/core/management/base.py',
'django/core/handlers/exception.py',
f'/python{".".join(str(v) for v in sys.version_info[:2])}/wsgiref'
)
def print_exc_plus(exc=None, stop_on_file_path=None, max_chars=None):
""" Print traceback information with a listing of all the local variables in each frame. """
if exc is None:
tb = sys.exc_info()[2]
else:
tb = exc.__traceback__ # FIXME: How to get the Traceback object better?
while tb.tb_next:
tb = tb.tb_next
stack = []
f = tb.tb_frame
while f:
stack.append(f)
f = f.f_back
print_local_vars = True
if stop_on_file_path is None:
stop_on_file_path = DEFAULT_STOP_ON_FILE_PATH
if max_chars is None:
max_chars = TRACEBACK_MAX_CHARS
print(' -' * 50, file=sys.stderr)
print('Locals by frame, most recent call first:', file=sys.stderr)
for frame in stack:
file_path = frame.f_code.co_filename
print(
f'\n File "{file_path}", line {frame.f_lineno}, in {frame.f_code.co_name}',
end='',
flush=True,
file=sys.stderr)
if stop_on_file_path and print_local_vars:
for path_part in stop_on_file_path:
if path_part in file_path:
print_local_vars = False
break
if print_local_vars:
print(file=sys.stderr)
for key, value in list(frame.f_locals.items()):
print('%30s =' % key, end=' ', file=sys.stderr)
# We have to be careful not to cause a new error in our error
# printer! Calling str() on an unknown object could cause an
# error we don't want.
value = repr(value)
if len(value) + 3 > max_chars:
value = f'{value[:max_chars-3]}...'
try:
print(value, file=sys.stderr)
except BaseException: # noqa:B036
print('<ERROR WHILE PRINTING VALUE>', file=sys.stderr)
print(file=sys.stderr)
print('=' * 100, file=sys.stderr)