blob: b7130d899f79ea0daee9ebad2fbab868baf6e593 [file] [log] [blame]
Guido van Rossume7b146f2000-02-04 15:28:42 +00001"""Extract, format and print information about Python stack traces."""
Guido van Rossum526beed1994-07-01 15:36:46 +00002
3import linecache
Guido van Rossum526beed1994-07-01 15:36:46 +00004import sys
Guido van Rossumc7acf2a1995-02-27 13:15:45 +00005import types
Benjamin Petersone6528212008-07-15 15:32:09 +00006import itertools
Guido van Rossum526beed1994-07-01 15:36:46 +00007
Skip Montanaro40fc1602001-03-01 04:27:19 +00008__all__ = ['extract_stack', 'extract_tb', 'format_exception',
9 'format_exception_only', 'format_list', 'format_stack',
Neil Schemenauerf607fc52003-11-05 23:03:00 +000010 'format_tb', 'print_exc', 'format_exc', 'print_exception',
Georg Brandlc7372832008-05-12 18:03:53 +000011 'print_last', 'print_stack', 'print_tb']
Skip Montanaro40fc1602001-03-01 04:27:19 +000012
Guido van Rossum194e20a1995-09-20 20:31:51 +000013def _print(file, str='', terminator='\n'):
Tim Petersb90f89a2001-01-15 03:26:36 +000014 file.write(str+terminator)
Guido van Rossumdcc057a1996-08-12 23:18:13 +000015
16
17def print_list(extracted_list, file=None):
Tim Petersb90f89a2001-01-15 03:26:36 +000018 """Print the list of tuples as returned by extract_tb() or
19 extract_stack() as a formatted stack trace to the given file."""
Raymond Hettinger10ff7062002-06-02 03:04:52 +000020 if file is None:
Tim Petersb90f89a2001-01-15 03:26:36 +000021 file = sys.stderr
22 for filename, lineno, name, line in extracted_list:
23 _print(file,
24 ' File "%s", line %d, in %s' % (filename,lineno,name))
25 if line:
Eric S. Raymondec3bbde2001-02-09 09:39:08 +000026 _print(file, ' %s' % line.strip())
Guido van Rossumdcc057a1996-08-12 23:18:13 +000027
28def format_list(extracted_list):
Jeremy Hylton69e9e8b2001-03-21 19:09:31 +000029 """Format a list of traceback entry tuples for printing.
30
31 Given a list of tuples as returned by extract_tb() or
Tim Petersb90f89a2001-01-15 03:26:36 +000032 extract_stack(), return a list of strings ready for printing.
Jeremy Hylton69e9e8b2001-03-21 19:09:31 +000033 Each string in the resulting list corresponds to the item with the
34 same index in the argument list. Each string ends in a newline;
35 the strings may contain internal newlines as well, for those items
36 whose source text line is not None.
37 """
Tim Petersb90f89a2001-01-15 03:26:36 +000038 list = []
39 for filename, lineno, name, line in extracted_list:
40 item = ' File "%s", line %d, in %s\n' % (filename,lineno,name)
41 if line:
Eric S. Raymondec3bbde2001-02-09 09:39:08 +000042 item = item + ' %s\n' % line.strip()
Tim Petersb90f89a2001-01-15 03:26:36 +000043 list.append(item)
44 return list
45
Guido van Rossum194e20a1995-09-20 20:31:51 +000046
47def print_tb(tb, limit=None, file=None):
Tim Petersb90f89a2001-01-15 03:26:36 +000048 """Print up to 'limit' stack trace entries from the traceback 'tb'.
Jeremy Hylton69e9e8b2001-03-21 19:09:31 +000049
50 If 'limit' is omitted or None, all entries are printed. If 'file'
51 is omitted or None, the output goes to sys.stderr; otherwise
52 'file' should be an open file or file-like object with a write()
53 method.
54 """
Raymond Hettinger10ff7062002-06-02 03:04:52 +000055 if file is None:
Tim Petersb90f89a2001-01-15 03:26:36 +000056 file = sys.stderr
57 if limit is None:
58 if hasattr(sys, 'tracebacklimit'):
59 limit = sys.tracebacklimit
60 n = 0
61 while tb is not None and (limit is None or n < limit):
62 f = tb.tb_frame
Michael W. Hudsondd32a912002-08-15 14:59:02 +000063 lineno = tb.tb_lineno
Tim Petersb90f89a2001-01-15 03:26:36 +000064 co = f.f_code
65 filename = co.co_filename
66 name = co.co_name
67 _print(file,
68 ' File "%s", line %d, in %s' % (filename,lineno,name))
Hye-Shik Chang182ac852004-10-26 09:16:42 +000069 linecache.checkcache(filename)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000070 line = linecache.getline(filename, lineno, f.f_globals)
Eric S. Raymondec3bbde2001-02-09 09:39:08 +000071 if line: _print(file, ' ' + line.strip())
Tim Petersb90f89a2001-01-15 03:26:36 +000072 tb = tb.tb_next
73 n = n+1
Guido van Rossum526beed1994-07-01 15:36:46 +000074
Guido van Rossum28e99fe1995-08-04 04:30:30 +000075def format_tb(tb, limit = None):
Tim Petersb90f89a2001-01-15 03:26:36 +000076 """A shorthand for 'format_list(extract_stack(f, limit))."""
77 return format_list(extract_tb(tb, limit))
Guido van Rossum28e99fe1995-08-04 04:30:30 +000078
Guido van Rossum526beed1994-07-01 15:36:46 +000079def extract_tb(tb, limit = None):
Jeremy Hylton69e9e8b2001-03-21 19:09:31 +000080 """Return list of up to limit pre-processed entries from traceback.
81
82 This is useful for alternate formatting of stack traces. If
83 'limit' is omitted or None, all entries are extracted. A
84 pre-processed stack trace entry is a quadruple (filename, line
85 number, function name, text) representing the information that is
86 usually printed for a stack trace. The text is a string with
87 leading and trailing whitespace stripped; if the source is not
88 available it is None.
89 """
Tim Petersb90f89a2001-01-15 03:26:36 +000090 if limit is None:
91 if hasattr(sys, 'tracebacklimit'):
92 limit = sys.tracebacklimit
93 list = []
94 n = 0
95 while tb is not None and (limit is None or n < limit):
96 f = tb.tb_frame
Michael W. Hudsondd32a912002-08-15 14:59:02 +000097 lineno = tb.tb_lineno
Tim Petersb90f89a2001-01-15 03:26:36 +000098 co = f.f_code
99 filename = co.co_filename
100 name = co.co_name
Hye-Shik Chang182ac852004-10-26 09:16:42 +0000101 linecache.checkcache(filename)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000102 line = linecache.getline(filename, lineno, f.f_globals)
Eric S. Raymondec3bbde2001-02-09 09:39:08 +0000103 if line: line = line.strip()
Tim Petersb90f89a2001-01-15 03:26:36 +0000104 else: line = None
105 list.append((filename, lineno, name, line))
106 tb = tb.tb_next
107 n = n+1
108 return list
Guido van Rossum526beed1994-07-01 15:36:46 +0000109
Guido van Rossum28e99fe1995-08-04 04:30:30 +0000110
Benjamin Petersone6528212008-07-15 15:32:09 +0000111_cause_message = (
112 "\nThe above exception was the direct cause "
113 "of the following exception:\n")
114
115_context_message = (
116 "\nDuring handling of the above exception, "
117 "another exception occurred:\n")
118
119def _iter_chain(exc, custom_tb=None, seen=None):
120 if seen is None:
121 seen = set()
122 seen.add(exc)
123 its = []
124 cause = exc.__cause__
125 context = exc.__context__
126 if cause is not None and cause not in seen:
127 its.append(_iter_chain(cause, None, seen))
128 its.append([(_cause_message, None)])
129 if context is not None and context is not cause and context not in seen:
130 its.append(_iter_chain(context, None, seen))
131 its.append([(_context_message, None)])
132 its.append([(exc, custom_tb or exc.__traceback__)])
133 return itertools.chain(*its)
134
135
136def print_exception(etype, value, tb, limit=None, file=None, chain=True):
Jeremy Hylton69e9e8b2001-03-21 19:09:31 +0000137 """Print exception up to 'limit' stack trace entries from 'tb' to 'file'.
138
139 This differs from print_tb() in the following ways: (1) if
140 traceback is not None, it prints a header "Traceback (most recent
141 call last):"; (2) it prints the exception type and value after the
142 stack trace; (3) if type is SyntaxError and value has the
143 appropriate format, it prints the line where the syntax error
Tim Petersb90f89a2001-01-15 03:26:36 +0000144 occurred with a caret on the next line indicating the approximate
Jeremy Hylton69e9e8b2001-03-21 19:09:31 +0000145 position of the error.
146 """
Raymond Hettinger10ff7062002-06-02 03:04:52 +0000147 if file is None:
Tim Petersb90f89a2001-01-15 03:26:36 +0000148 file = sys.stderr
Benjamin Petersone6528212008-07-15 15:32:09 +0000149 if chain:
150 values = _iter_chain(value, tb)
151 else:
152 values = [(value, tb)]
153 for value, tb in values:
154 if isinstance(value, str):
155 _print(file, value)
156 continue
157 if tb:
158 _print(file, 'Traceback (most recent call last):')
159 print_tb(tb, limit, file)
160 lines = format_exception_only(type(value), value)
161 for line in lines[:-1]:
162 _print(file, line, ' ')
163 _print(file, lines[-1], '')
Guido van Rossum28e99fe1995-08-04 04:30:30 +0000164
Benjamin Petersone6528212008-07-15 15:32:09 +0000165def format_exception(etype, value, tb, limit=None, chain=True):
Jeremy Hylton69e9e8b2001-03-21 19:09:31 +0000166 """Format a stack trace and the exception information.
167
168 The arguments have the same meaning as the corresponding arguments
169 to print_exception(). The return value is a list of strings, each
Tim Petersb90f89a2001-01-15 03:26:36 +0000170 ending in a newline and some containing internal newlines. When
171 these lines are concatenated and printed, exactly the same text is
Jeremy Hylton69e9e8b2001-03-21 19:09:31 +0000172 printed as does print_exception().
173 """
Benjamin Petersone6528212008-07-15 15:32:09 +0000174 list = []
175 if chain:
176 values = _iter_chain(value, tb)
Tim Petersb90f89a2001-01-15 03:26:36 +0000177 else:
Benjamin Petersone6528212008-07-15 15:32:09 +0000178 values = [(value, tb)]
179 for value, tb in values:
180 if isinstance(value, str):
181 list.append(value + '\n')
182 continue
183 if tb:
184 list.append('Traceback (most recent call last):\n')
185 list.extend(format_tb(tb, limit))
186 list.extend(format_exception_only(type(value), value))
Tim Petersb90f89a2001-01-15 03:26:36 +0000187 return list
Guido van Rossum28e99fe1995-08-04 04:30:30 +0000188
189def format_exception_only(etype, value):
Jeremy Hylton69e9e8b2001-03-21 19:09:31 +0000190 """Format the exception part of a traceback.
191
192 The arguments are the exception type and value such as given by
193 sys.last_type and sys.last_value. The return value is a list of
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000194 strings, each ending in a newline.
195
196 Normally, the list contains a single string; however, for
197 SyntaxError exceptions, it contains several lines that (when
198 printed) display detailed information about where the syntax
199 error occurred.
200
201 The message indicating which exception occurred is always the last
202 string in the list.
203
Jeremy Hylton69e9e8b2001-03-21 19:09:31 +0000204 """
Thomas Wouters89f507f2006-12-13 04:49:30 +0000205 # Gracefully handle (the way Python 2.4 and earlier did) the case of
206 # being called with (None, None).
207 if etype is None:
208 return [_format_final_exc_line(etype, value)]
209
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000210 stype = etype.__name__
Guido van Rossum6a2a2a02006-08-26 20:37:44 +0000211 smod = etype.__module__
Georg Brandl1a3284e2007-12-02 09:40:06 +0000212 if smod not in ("__main__", "builtins"):
Guido van Rossum6a2a2a02006-08-26 20:37:44 +0000213 stype = smod + '.' + stype
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000214
215 if not issubclass(etype, SyntaxError):
216 return [_format_final_exc_line(stype, value)]
217
218 # It was a syntax error; show exactly where the problem was found.
219 lines = []
Guido van Rossum33d26892007-08-05 15:29:28 +0000220 filename = value.filename or "<string>"
221 lineno = str(value.lineno) or '?'
222 lines.append(' File "%s", line %s\n' % (filename, lineno))
223 badline = value.text
224 offset = value.offset
225 if badline is not None:
226 lines.append(' %s\n' % badline.strip())
227 if offset is not None:
228 caretspace = badline[:offset].lstrip()
229 # non-space whitespace (likes tabs) must be kept for alignment
230 caretspace = ((c.isspace() and c or ' ') for c in caretspace)
231 # only three spaces to account for offset1 == pos 0
232 lines.append(' %s^\n' % ''.join(caretspace))
233 msg = value.msg or "<no detail available>"
234 lines.append("%s: %s\n" % (stype, msg))
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000235 return lines
236
237def _format_final_exc_line(etype, value):
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000238 valuestr = _some_str(value)
239 if value is None or not valuestr:
240 line = "%s\n" % etype
Tim Petersb90f89a2001-01-15 03:26:36 +0000241 else:
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000242 line = "%s: %s\n" % (etype, valuestr)
243 return line
Guido van Rossum28e99fe1995-08-04 04:30:30 +0000244
Guido van Rossum2823f032000-08-22 02:04:46 +0000245def _some_str(value):
Tim Petersb90f89a2001-01-15 03:26:36 +0000246 try:
247 return str(value)
248 except:
249 return '<unprintable %s object>' % type(value).__name__
Guido van Rossum2823f032000-08-22 02:04:46 +0000250
Guido van Rossum526beed1994-07-01 15:36:46 +0000251
Benjamin Petersone6528212008-07-15 15:32:09 +0000252def print_exc(limit=None, file=None, chain=True):
Neal Norwitzac3625f2006-03-17 05:49:33 +0000253 """Shorthand for 'print_exception(*sys.exc_info(), limit, file)'."""
Raymond Hettinger10ff7062002-06-02 03:04:52 +0000254 if file is None:
Tim Petersb90f89a2001-01-15 03:26:36 +0000255 file = sys.stderr
256 try:
257 etype, value, tb = sys.exc_info()
Benjamin Petersone6528212008-07-15 15:32:09 +0000258 print_exception(etype, value, tb, limit, file, chain)
Tim Petersb90f89a2001-01-15 03:26:36 +0000259 finally:
260 etype = value = tb = None
Guido van Rossum526beed1994-07-01 15:36:46 +0000261
Neil Schemenauerf607fc52003-11-05 23:03:00 +0000262
Benjamin Petersone6528212008-07-15 15:32:09 +0000263def format_exc(limit=None, chain=True):
Neil Schemenauerf607fc52003-11-05 23:03:00 +0000264 """Like print_exc() but return a string."""
265 try:
266 etype, value, tb = sys.exc_info()
Benjamin Petersone6528212008-07-15 15:32:09 +0000267 return ''.join(
268 format_exception(etype, value, tb, limit, chain))
Neil Schemenauerf607fc52003-11-05 23:03:00 +0000269 finally:
270 etype = value = tb = None
Tim Peters58eb11c2004-01-18 20:29:55 +0000271
Neil Schemenauerf607fc52003-11-05 23:03:00 +0000272
Benjamin Petersone6528212008-07-15 15:32:09 +0000273def print_last(limit=None, file=None, chain=True):
Tim Petersb90f89a2001-01-15 03:26:36 +0000274 """This is a shorthand for 'print_exception(sys.last_type,
275 sys.last_value, sys.last_traceback, limit, file)'."""
Raymond Hettinger10ff7062002-06-02 03:04:52 +0000276 if file is None:
Tim Petersb90f89a2001-01-15 03:26:36 +0000277 file = sys.stderr
278 print_exception(sys.last_type, sys.last_value, sys.last_traceback,
Benjamin Petersone6528212008-07-15 15:32:09 +0000279 limit, file, chain)
Guido van Rossumdcc057a1996-08-12 23:18:13 +0000280
281
282def print_stack(f=None, limit=None, file=None):
Jeremy Hylton69e9e8b2001-03-21 19:09:31 +0000283 """Print a stack trace from its invocation point.
Tim Petersa19a1682001-03-29 04:36:09 +0000284
Jeremy Hylton69e9e8b2001-03-21 19:09:31 +0000285 The optional 'f' argument can be used to specify an alternate
286 stack frame at which to start. The optional 'limit' and 'file'
287 arguments have the same meaning as for print_exception().
288 """
Tim Petersb90f89a2001-01-15 03:26:36 +0000289 if f is None:
290 try:
291 raise ZeroDivisionError
292 except ZeroDivisionError:
293 f = sys.exc_info()[2].tb_frame.f_back
294 print_list(extract_stack(f, limit), file)
Guido van Rossumdcc057a1996-08-12 23:18:13 +0000295
296def format_stack(f=None, limit=None):
Jeremy Hylton69e9e8b2001-03-21 19:09:31 +0000297 """Shorthand for 'format_list(extract_stack(f, limit))'."""
Tim Petersb90f89a2001-01-15 03:26:36 +0000298 if f is None:
299 try:
300 raise ZeroDivisionError
301 except ZeroDivisionError:
302 f = sys.exc_info()[2].tb_frame.f_back
303 return format_list(extract_stack(f, limit))
Guido van Rossumdcc057a1996-08-12 23:18:13 +0000304
305def extract_stack(f=None, limit = None):
Jeremy Hylton69e9e8b2001-03-21 19:09:31 +0000306 """Extract the raw traceback from the current stack frame.
307
308 The return value has the same format as for extract_tb(). The
309 optional 'f' and 'limit' arguments have the same meaning as for
310 print_stack(). Each item in the list is a quadruple (filename,
311 line number, function name, text), and the entries are in order
312 from oldest to newest stack frame.
313 """
Tim Petersb90f89a2001-01-15 03:26:36 +0000314 if f is None:
315 try:
316 raise ZeroDivisionError
317 except ZeroDivisionError:
318 f = sys.exc_info()[2].tb_frame.f_back
319 if limit is None:
320 if hasattr(sys, 'tracebacklimit'):
321 limit = sys.tracebacklimit
322 list = []
323 n = 0
324 while f is not None and (limit is None or n < limit):
Michael W. Hudsondd32a912002-08-15 14:59:02 +0000325 lineno = f.f_lineno
Tim Petersb90f89a2001-01-15 03:26:36 +0000326 co = f.f_code
327 filename = co.co_filename
328 name = co.co_name
Hye-Shik Chang182ac852004-10-26 09:16:42 +0000329 linecache.checkcache(filename)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000330 line = linecache.getline(filename, lineno, f.f_globals)
Eric S. Raymondec3bbde2001-02-09 09:39:08 +0000331 if line: line = line.strip()
Tim Petersb90f89a2001-01-15 03:26:36 +0000332 else: line = None
333 list.append((filename, lineno, name, line))
334 f = f.f_back
335 n = n+1
336 list.reverse()
337 return list