blob: fac73c4b3e7e2badd00bb55e92496f401262d030 [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
Guido van Rossum526beed1994-07-01 15:36:46 +00006
Skip Montanaro40fc1602001-03-01 04:27:19 +00007__all__ = ['extract_stack', 'extract_tb', 'format_exception',
8 'format_exception_only', 'format_list', 'format_stack',
Neil Schemenauerf607fc52003-11-05 23:03:00 +00009 'format_tb', 'print_exc', 'format_exc', 'print_exception',
Georg Brandlc7372832008-05-12 18:03:53 +000010 'print_last', 'print_stack', 'print_tb']
Skip Montanaro40fc1602001-03-01 04:27:19 +000011
Guido van Rossum194e20a1995-09-20 20:31:51 +000012def _print(file, str='', terminator='\n'):
Tim Petersb90f89a2001-01-15 03:26:36 +000013 file.write(str+terminator)
Guido van Rossumdcc057a1996-08-12 23:18:13 +000014
15
16def print_list(extracted_list, file=None):
Tim Petersb90f89a2001-01-15 03:26:36 +000017 """Print the list of tuples as returned by extract_tb() or
18 extract_stack() as a formatted stack trace to the given file."""
Raymond Hettinger10ff7062002-06-02 03:04:52 +000019 if file is None:
Tim Petersb90f89a2001-01-15 03:26:36 +000020 file = sys.stderr
21 for filename, lineno, name, line in extracted_list:
22 _print(file,
23 ' File "%s", line %d, in %s' % (filename,lineno,name))
24 if line:
Eric S. Raymondec3bbde2001-02-09 09:39:08 +000025 _print(file, ' %s' % line.strip())
Guido van Rossumdcc057a1996-08-12 23:18:13 +000026
27def format_list(extracted_list):
Jeremy Hylton69e9e8b2001-03-21 19:09:31 +000028 """Format a list of traceback entry tuples for printing.
29
30 Given a list of tuples as returned by extract_tb() or
Tim Petersb90f89a2001-01-15 03:26:36 +000031 extract_stack(), return a list of strings ready for printing.
Jeremy Hylton69e9e8b2001-03-21 19:09:31 +000032 Each string in the resulting list corresponds to the item with the
33 same index in the argument list. Each string ends in a newline;
34 the strings may contain internal newlines as well, for those items
35 whose source text line is not None.
36 """
Tim Petersb90f89a2001-01-15 03:26:36 +000037 list = []
38 for filename, lineno, name, line in extracted_list:
39 item = ' File "%s", line %d, in %s\n' % (filename,lineno,name)
40 if line:
Eric S. Raymondec3bbde2001-02-09 09:39:08 +000041 item = item + ' %s\n' % line.strip()
Tim Petersb90f89a2001-01-15 03:26:36 +000042 list.append(item)
43 return list
44
Guido van Rossum194e20a1995-09-20 20:31:51 +000045
46def print_tb(tb, limit=None, file=None):
Tim Petersb90f89a2001-01-15 03:26:36 +000047 """Print up to 'limit' stack trace entries from the traceback 'tb'.
Jeremy Hylton69e9e8b2001-03-21 19:09:31 +000048
49 If 'limit' is omitted or None, all entries are printed. If 'file'
50 is omitted or None, the output goes to sys.stderr; otherwise
51 'file' should be an open file or file-like object with a write()
52 method.
53 """
Raymond Hettinger10ff7062002-06-02 03:04:52 +000054 if file is None:
Tim Petersb90f89a2001-01-15 03:26:36 +000055 file = sys.stderr
56 if limit is None:
57 if hasattr(sys, 'tracebacklimit'):
58 limit = sys.tracebacklimit
59 n = 0
60 while tb is not None and (limit is None or n < limit):
61 f = tb.tb_frame
Michael W. Hudsondd32a912002-08-15 14:59:02 +000062 lineno = tb.tb_lineno
Tim Petersb90f89a2001-01-15 03:26:36 +000063 co = f.f_code
64 filename = co.co_filename
65 name = co.co_name
66 _print(file,
67 ' File "%s", line %d, in %s' % (filename,lineno,name))
Hye-Shik Chang182ac852004-10-26 09:16:42 +000068 linecache.checkcache(filename)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000069 line = linecache.getline(filename, lineno, f.f_globals)
Eric S. Raymondec3bbde2001-02-09 09:39:08 +000070 if line: _print(file, ' ' + line.strip())
Tim Petersb90f89a2001-01-15 03:26:36 +000071 tb = tb.tb_next
72 n = n+1
Guido van Rossum526beed1994-07-01 15:36:46 +000073
Guido van Rossum28e99fe1995-08-04 04:30:30 +000074def format_tb(tb, limit = None):
Tim Petersb90f89a2001-01-15 03:26:36 +000075 """A shorthand for 'format_list(extract_stack(f, limit))."""
76 return format_list(extract_tb(tb, limit))
Guido van Rossum28e99fe1995-08-04 04:30:30 +000077
Guido van Rossum526beed1994-07-01 15:36:46 +000078def extract_tb(tb, limit = None):
Jeremy Hylton69e9e8b2001-03-21 19:09:31 +000079 """Return list of up to limit pre-processed entries from traceback.
80
81 This is useful for alternate formatting of stack traces. If
82 'limit' is omitted or None, all entries are extracted. A
83 pre-processed stack trace entry is a quadruple (filename, line
84 number, function name, text) representing the information that is
85 usually printed for a stack trace. The text is a string with
86 leading and trailing whitespace stripped; if the source is not
87 available it is None.
88 """
Tim Petersb90f89a2001-01-15 03:26:36 +000089 if limit is None:
90 if hasattr(sys, 'tracebacklimit'):
91 limit = sys.tracebacklimit
92 list = []
93 n = 0
94 while tb is not None and (limit is None or n < limit):
95 f = tb.tb_frame
Michael W. Hudsondd32a912002-08-15 14:59:02 +000096 lineno = tb.tb_lineno
Tim Petersb90f89a2001-01-15 03:26:36 +000097 co = f.f_code
98 filename = co.co_filename
99 name = co.co_name
Hye-Shik Chang182ac852004-10-26 09:16:42 +0000100 linecache.checkcache(filename)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000101 line = linecache.getline(filename, lineno, f.f_globals)
Eric S. Raymondec3bbde2001-02-09 09:39:08 +0000102 if line: line = line.strip()
Tim Petersb90f89a2001-01-15 03:26:36 +0000103 else: line = None
104 list.append((filename, lineno, name, line))
105 tb = tb.tb_next
106 n = n+1
107 return list
Guido van Rossum526beed1994-07-01 15:36:46 +0000108
Guido van Rossum28e99fe1995-08-04 04:30:30 +0000109
Benjamin Petersone6528212008-07-15 15:32:09 +0000110_cause_message = (
111 "\nThe above exception was the direct cause "
112 "of the following exception:\n")
113
114_context_message = (
115 "\nDuring handling of the above exception, "
116 "another exception occurred:\n")
117
118def _iter_chain(exc, custom_tb=None, seen=None):
119 if seen is None:
120 seen = set()
121 seen.add(exc)
122 its = []
123 cause = exc.__cause__
124 context = exc.__context__
125 if cause is not None and cause not in seen:
126 its.append(_iter_chain(cause, None, seen))
127 its.append([(_cause_message, None)])
128 if context is not None and context is not cause and context not in seen:
129 its.append(_iter_chain(context, None, seen))
130 its.append([(_context_message, None)])
131 its.append([(exc, custom_tb or exc.__traceback__)])
Hirokazu Yamamoto54a1cc62008-09-09 17:55:11 +0000132 # itertools.chain is in an extension module and may be unavailable
133 for it in its:
134 for x in it:
135 yield x
Benjamin Petersone6528212008-07-15 15:32:09 +0000136
137
138def print_exception(etype, value, tb, limit=None, file=None, chain=True):
Jeremy Hylton69e9e8b2001-03-21 19:09:31 +0000139 """Print exception up to 'limit' stack trace entries from 'tb' to 'file'.
140
141 This differs from print_tb() in the following ways: (1) if
142 traceback is not None, it prints a header "Traceback (most recent
143 call last):"; (2) it prints the exception type and value after the
144 stack trace; (3) if type is SyntaxError and value has the
145 appropriate format, it prints the line where the syntax error
Tim Petersb90f89a2001-01-15 03:26:36 +0000146 occurred with a caret on the next line indicating the approximate
Jeremy Hylton69e9e8b2001-03-21 19:09:31 +0000147 position of the error.
148 """
Raymond Hettinger10ff7062002-06-02 03:04:52 +0000149 if file is None:
Tim Petersb90f89a2001-01-15 03:26:36 +0000150 file = sys.stderr
Benjamin Petersone6528212008-07-15 15:32:09 +0000151 if chain:
152 values = _iter_chain(value, tb)
153 else:
154 values = [(value, tb)]
155 for value, tb in values:
156 if isinstance(value, str):
157 _print(file, value)
158 continue
159 if tb:
160 _print(file, 'Traceback (most recent call last):')
161 print_tb(tb, limit, file)
162 lines = format_exception_only(type(value), value)
163 for line in lines[:-1]:
164 _print(file, line, ' ')
165 _print(file, lines[-1], '')
Guido van Rossum28e99fe1995-08-04 04:30:30 +0000166
Benjamin Petersone6528212008-07-15 15:32:09 +0000167def format_exception(etype, value, tb, limit=None, chain=True):
Jeremy Hylton69e9e8b2001-03-21 19:09:31 +0000168 """Format a stack trace and the exception information.
169
170 The arguments have the same meaning as the corresponding arguments
171 to print_exception(). The return value is a list of strings, each
Tim Petersb90f89a2001-01-15 03:26:36 +0000172 ending in a newline and some containing internal newlines. When
173 these lines are concatenated and printed, exactly the same text is
Jeremy Hylton69e9e8b2001-03-21 19:09:31 +0000174 printed as does print_exception().
175 """
Benjamin Petersone6528212008-07-15 15:32:09 +0000176 list = []
177 if chain:
178 values = _iter_chain(value, tb)
Tim Petersb90f89a2001-01-15 03:26:36 +0000179 else:
Benjamin Petersone6528212008-07-15 15:32:09 +0000180 values = [(value, tb)]
181 for value, tb in values:
182 if isinstance(value, str):
183 list.append(value + '\n')
184 continue
185 if tb:
186 list.append('Traceback (most recent call last):\n')
187 list.extend(format_tb(tb, limit))
188 list.extend(format_exception_only(type(value), value))
Tim Petersb90f89a2001-01-15 03:26:36 +0000189 return list
Guido van Rossum28e99fe1995-08-04 04:30:30 +0000190
191def format_exception_only(etype, value):
Jeremy Hylton69e9e8b2001-03-21 19:09:31 +0000192 """Format the exception part of a traceback.
193
194 The arguments are the exception type and value such as given by
195 sys.last_type and sys.last_value. The return value is a list of
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000196 strings, each ending in a newline.
197
198 Normally, the list contains a single string; however, for
199 SyntaxError exceptions, it contains several lines that (when
200 printed) display detailed information about where the syntax
201 error occurred.
202
203 The message indicating which exception occurred is always the last
204 string in the list.
205
Jeremy Hylton69e9e8b2001-03-21 19:09:31 +0000206 """
Thomas Wouters89f507f2006-12-13 04:49:30 +0000207 # Gracefully handle (the way Python 2.4 and earlier did) the case of
208 # being called with (None, None).
209 if etype is None:
210 return [_format_final_exc_line(etype, value)]
211
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000212 stype = etype.__name__
Guido van Rossum6a2a2a02006-08-26 20:37:44 +0000213 smod = etype.__module__
Georg Brandl1a3284e2007-12-02 09:40:06 +0000214 if smod not in ("__main__", "builtins"):
Guido van Rossum6a2a2a02006-08-26 20:37:44 +0000215 stype = smod + '.' + stype
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000216
217 if not issubclass(etype, SyntaxError):
218 return [_format_final_exc_line(stype, value)]
219
220 # It was a syntax error; show exactly where the problem was found.
221 lines = []
Guido van Rossum33d26892007-08-05 15:29:28 +0000222 filename = value.filename or "<string>"
223 lineno = str(value.lineno) or '?'
224 lines.append(' File "%s", line %s\n' % (filename, lineno))
225 badline = value.text
226 offset = value.offset
227 if badline is not None:
228 lines.append(' %s\n' % badline.strip())
229 if offset is not None:
230 caretspace = badline[:offset].lstrip()
231 # non-space whitespace (likes tabs) must be kept for alignment
232 caretspace = ((c.isspace() and c or ' ') for c in caretspace)
233 # only three spaces to account for offset1 == pos 0
234 lines.append(' %s^\n' % ''.join(caretspace))
235 msg = value.msg or "<no detail available>"
236 lines.append("%s: %s\n" % (stype, msg))
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000237 return lines
238
239def _format_final_exc_line(etype, value):
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000240 valuestr = _some_str(value)
241 if value is None or not valuestr:
242 line = "%s\n" % etype
Tim Petersb90f89a2001-01-15 03:26:36 +0000243 else:
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000244 line = "%s: %s\n" % (etype, valuestr)
245 return line
Guido van Rossum28e99fe1995-08-04 04:30:30 +0000246
Guido van Rossum2823f032000-08-22 02:04:46 +0000247def _some_str(value):
Tim Petersb90f89a2001-01-15 03:26:36 +0000248 try:
249 return str(value)
250 except:
251 return '<unprintable %s object>' % type(value).__name__
Guido van Rossum2823f032000-08-22 02:04:46 +0000252
Guido van Rossum526beed1994-07-01 15:36:46 +0000253
Benjamin Petersone6528212008-07-15 15:32:09 +0000254def print_exc(limit=None, file=None, chain=True):
Neal Norwitzac3625f2006-03-17 05:49:33 +0000255 """Shorthand for 'print_exception(*sys.exc_info(), limit, file)'."""
Raymond Hettinger10ff7062002-06-02 03:04:52 +0000256 if file is None:
Tim Petersb90f89a2001-01-15 03:26:36 +0000257 file = sys.stderr
258 try:
259 etype, value, tb = sys.exc_info()
Benjamin Petersone6528212008-07-15 15:32:09 +0000260 print_exception(etype, value, tb, limit, file, chain)
Tim Petersb90f89a2001-01-15 03:26:36 +0000261 finally:
262 etype = value = tb = None
Guido van Rossum526beed1994-07-01 15:36:46 +0000263
Neil Schemenauerf607fc52003-11-05 23:03:00 +0000264
Benjamin Petersone6528212008-07-15 15:32:09 +0000265def format_exc(limit=None, chain=True):
Neil Schemenauerf607fc52003-11-05 23:03:00 +0000266 """Like print_exc() but return a string."""
267 try:
268 etype, value, tb = sys.exc_info()
Benjamin Petersone6528212008-07-15 15:32:09 +0000269 return ''.join(
270 format_exception(etype, value, tb, limit, chain))
Neil Schemenauerf607fc52003-11-05 23:03:00 +0000271 finally:
272 etype = value = tb = None
Tim Peters58eb11c2004-01-18 20:29:55 +0000273
Neil Schemenauerf607fc52003-11-05 23:03:00 +0000274
Benjamin Petersone6528212008-07-15 15:32:09 +0000275def print_last(limit=None, file=None, chain=True):
Tim Petersb90f89a2001-01-15 03:26:36 +0000276 """This is a shorthand for 'print_exception(sys.last_type,
277 sys.last_value, sys.last_traceback, limit, file)'."""
Raymond Hettinger10ff7062002-06-02 03:04:52 +0000278 if file is None:
Tim Petersb90f89a2001-01-15 03:26:36 +0000279 file = sys.stderr
280 print_exception(sys.last_type, sys.last_value, sys.last_traceback,
Benjamin Petersone6528212008-07-15 15:32:09 +0000281 limit, file, chain)
Guido van Rossumdcc057a1996-08-12 23:18:13 +0000282
283
284def print_stack(f=None, limit=None, file=None):
Jeremy Hylton69e9e8b2001-03-21 19:09:31 +0000285 """Print a stack trace from its invocation point.
Tim Petersa19a1682001-03-29 04:36:09 +0000286
Jeremy Hylton69e9e8b2001-03-21 19:09:31 +0000287 The optional 'f' argument can be used to specify an alternate
288 stack frame at which to start. The optional 'limit' and 'file'
289 arguments have the same meaning as for print_exception().
290 """
Tim Petersb90f89a2001-01-15 03:26:36 +0000291 if f is None:
292 try:
293 raise ZeroDivisionError
294 except ZeroDivisionError:
295 f = sys.exc_info()[2].tb_frame.f_back
296 print_list(extract_stack(f, limit), file)
Guido van Rossumdcc057a1996-08-12 23:18:13 +0000297
298def format_stack(f=None, limit=None):
Jeremy Hylton69e9e8b2001-03-21 19:09:31 +0000299 """Shorthand for 'format_list(extract_stack(f, limit))'."""
Tim Petersb90f89a2001-01-15 03:26:36 +0000300 if f is None:
301 try:
302 raise ZeroDivisionError
303 except ZeroDivisionError:
304 f = sys.exc_info()[2].tb_frame.f_back
305 return format_list(extract_stack(f, limit))
Guido van Rossumdcc057a1996-08-12 23:18:13 +0000306
307def extract_stack(f=None, limit = None):
Jeremy Hylton69e9e8b2001-03-21 19:09:31 +0000308 """Extract the raw traceback from the current stack frame.
309
310 The return value has the same format as for extract_tb(). The
311 optional 'f' and 'limit' arguments have the same meaning as for
312 print_stack(). Each item in the list is a quadruple (filename,
313 line number, function name, text), and the entries are in order
314 from oldest to newest stack frame.
315 """
Tim Petersb90f89a2001-01-15 03:26:36 +0000316 if f is None:
317 try:
318 raise ZeroDivisionError
319 except ZeroDivisionError:
320 f = sys.exc_info()[2].tb_frame.f_back
321 if limit is None:
322 if hasattr(sys, 'tracebacklimit'):
323 limit = sys.tracebacklimit
324 list = []
325 n = 0
326 while f is not None and (limit is None or n < limit):
Michael W. Hudsondd32a912002-08-15 14:59:02 +0000327 lineno = f.f_lineno
Tim Petersb90f89a2001-01-15 03:26:36 +0000328 co = f.f_code
329 filename = co.co_filename
330 name = co.co_name
Hye-Shik Chang182ac852004-10-26 09:16:42 +0000331 linecache.checkcache(filename)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000332 line = linecache.getline(filename, lineno, f.f_globals)
Eric S. Raymondec3bbde2001-02-09 09:39:08 +0000333 if line: line = line.strip()
Tim Petersb90f89a2001-01-15 03:26:36 +0000334 else: line = None
335 list.append((filename, lineno, name, line))
336 f = f.f_back
337 n = n+1
338 list.reverse()
339 return list