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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
# Format and print Python stack traces
import linecache
import string
import sys
import types
def print_tb(tb, limit = None):
if limit is None:
if hasattr(sys, 'tracebacklimit'):
limit = sys.tracebacklimit
n = 0
while tb is not None and (limit is None or n < limit):
f = tb.tb_frame
lineno = tb.tb_lineno
co = f.f_code
filename = co.co_filename
name = co.co_name
print ' File "%s", line %d, in %s' % (filename, lineno, name)
line = linecache.getline(filename, lineno)
if line: print ' ' + string.strip(line)
tb = tb.tb_next
n = n+1
def extract_tb(tb, limit = None):
if limit is None:
if hasattr(sys, 'tracebacklimit'):
limit = sys.tracebacklimit
list = []
n = 0
while tb is not None and (limit is None or n < limit):
f = tb.tb_frame
lineno = tb.tb_lineno
co = f.f_code
filename = co.co_filename
name = co.co_name
line = linecache.getline(filename, lineno)
if line: line = string.strip(line)
else: line = None
list.append(filename, lineno, name, line)
tb = tb.tb_next
n = n+1
return list
def print_exception(etype, value, tb, limit = None):
if tb:
print 'Traceback (innermost last):'
print_tb(tb, limit)
if type(etype) == types.ClassType:
stype = etype.__name__
else:
stype = etype
if value is None:
print stype
else:
if etype is SyntaxError:
try:
msg, (filename, lineno, offset, line) = value
except:
pass
else:
if not filename: filename = "<string>"
print ' File "%s", line %d' % \
(filename, lineno)
i = 0
while i < len(line) and \
line[i] in string.whitespace:
i = i+1
s = ' '
print s + string.strip(line)
for c in line[i:offset-1]:
if c in string.whitespace:
s = s + c
else:
s = s + ' '
print s + '^'
value = msg
print '%s: %s' % (stype, value)
def print_exc(limit = None):
print_exception(sys.exc_type, sys.exc_value, sys.exc_traceback,
limit)
def print_last(limit = None):
print_exception(sys.last_type, sys.last_value, sys.last_traceback,
limit)
|