blob: 497190656f8f12549e66d5c7d940e457d3b5da6a [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',
10 'print_last', 'print_stack', 'print_tb', 'tb_lineno']
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)
Tim Petersb90f89a2001-01-15 03:26:36 +000069 line = linecache.getline(filename, lineno)
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)
Tim Petersb90f89a2001-01-15 03:26:36 +0000101 line = linecache.getline(filename, lineno)
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
Guido van Rossum194e20a1995-09-20 20:31:51 +0000110def print_exception(etype, value, tb, limit=None, file=None):
Jeremy Hylton69e9e8b2001-03-21 19:09:31 +0000111 """Print exception up to 'limit' stack trace entries from 'tb' to 'file'.
112
113 This differs from print_tb() in the following ways: (1) if
114 traceback is not None, it prints a header "Traceback (most recent
115 call last):"; (2) it prints the exception type and value after the
116 stack trace; (3) if type is SyntaxError and value has the
117 appropriate format, it prints the line where the syntax error
Tim Petersb90f89a2001-01-15 03:26:36 +0000118 occurred with a caret on the next line indicating the approximate
Jeremy Hylton69e9e8b2001-03-21 19:09:31 +0000119 position of the error.
120 """
Raymond Hettinger10ff7062002-06-02 03:04:52 +0000121 if file is None:
Tim Petersb90f89a2001-01-15 03:26:36 +0000122 file = sys.stderr
123 if tb:
124 _print(file, 'Traceback (most recent call last):')
125 print_tb(tb, limit, file)
126 lines = format_exception_only(etype, value)
127 for line in lines[:-1]:
128 _print(file, line, ' ')
129 _print(file, lines[-1], '')
Guido van Rossum28e99fe1995-08-04 04:30:30 +0000130
131def format_exception(etype, value, tb, limit = None):
Jeremy Hylton69e9e8b2001-03-21 19:09:31 +0000132 """Format a stack trace and the exception information.
133
134 The arguments have the same meaning as the corresponding arguments
135 to print_exception(). The return value is a list of strings, each
Tim Petersb90f89a2001-01-15 03:26:36 +0000136 ending in a newline and some containing internal newlines. When
137 these lines are concatenated and printed, exactly the same text is
Jeremy Hylton69e9e8b2001-03-21 19:09:31 +0000138 printed as does print_exception().
139 """
Tim Petersb90f89a2001-01-15 03:26:36 +0000140 if tb:
141 list = ['Traceback (most recent call last):\n']
142 list = list + format_tb(tb, limit)
143 else:
144 list = []
145 list = list + format_exception_only(etype, value)
146 return list
Guido van Rossum28e99fe1995-08-04 04:30:30 +0000147
148def format_exception_only(etype, value):
Jeremy Hylton69e9e8b2001-03-21 19:09:31 +0000149 """Format the exception part of a traceback.
150
151 The arguments are the exception type and value such as given by
152 sys.last_type and sys.last_value. The return value is a list of
153 strings, each ending in a newline. Normally, the list contains a
154 single string; however, for SyntaxError exceptions, it contains
155 several lines that (when printed) display detailed information
156 about where the syntax error occurred. The message indicating
157 which exception occurred is the always last string in the list.
158 """
Tim Petersb90f89a2001-01-15 03:26:36 +0000159 list = []
Brett Cannonbf364092006-03-01 04:25:17 +0000160 if (type(etype) == types.ClassType
Thomas Wouters7c187bc2006-03-01 05:34:22 +0000161 or issubclass(etype, Exception)):
Tim Petersb90f89a2001-01-15 03:26:36 +0000162 stype = etype.__name__
163 else:
164 stype = etype
165 if value is None:
166 list.append(str(stype) + '\n')
167 else:
168 if etype is SyntaxError:
169 try:
170 msg, (filename, lineno, offset, line) = value
171 except:
172 pass
173 else:
174 if not filename: filename = "<string>"
175 list.append(' File "%s", line %d\n' %
176 (filename, lineno))
Tim Peters0bb580d2001-06-10 18:58:26 +0000177 if line is not None:
178 i = 0
179 while i < len(line) and line[i].isspace():
180 i = i+1
181 list.append(' %s\n' % line.strip())
182 if offset is not None:
183 s = ' '
184 for c in line[i:offset-1]:
185 if c.isspace():
186 s = s + c
187 else:
188 s = s + ' '
189 list.append('%s^\n' % s)
190 value = msg
Tim Petersb90f89a2001-01-15 03:26:36 +0000191 s = _some_str(value)
192 if s:
193 list.append('%s: %s\n' % (str(stype), s))
194 else:
195 list.append('%s\n' % str(stype))
196 return list
Guido van Rossum28e99fe1995-08-04 04:30:30 +0000197
Guido van Rossum2823f032000-08-22 02:04:46 +0000198def _some_str(value):
Tim Petersb90f89a2001-01-15 03:26:36 +0000199 try:
200 return str(value)
201 except:
202 return '<unprintable %s object>' % type(value).__name__
Guido van Rossum2823f032000-08-22 02:04:46 +0000203
Guido van Rossum526beed1994-07-01 15:36:46 +0000204
Guido van Rossum194e20a1995-09-20 20:31:51 +0000205def print_exc(limit=None, file=None):
Jeremy Hylton69e9e8b2001-03-21 19:09:31 +0000206 """Shorthand for 'print_exception(sys.exc_type, sys.exc_value, sys.exc_traceback, limit, file)'.
Tim Petersb90f89a2001-01-15 03:26:36 +0000207 (In fact, it uses sys.exc_info() to retrieve the same information
208 in a thread-safe way.)"""
Raymond Hettinger10ff7062002-06-02 03:04:52 +0000209 if file is None:
Tim Petersb90f89a2001-01-15 03:26:36 +0000210 file = sys.stderr
211 try:
212 etype, value, tb = sys.exc_info()
213 print_exception(etype, value, tb, limit, file)
214 finally:
215 etype = value = tb = None
Guido van Rossum526beed1994-07-01 15:36:46 +0000216
Neil Schemenauerf607fc52003-11-05 23:03:00 +0000217
218def format_exc(limit=None):
219 """Like print_exc() but return a string."""
220 try:
221 etype, value, tb = sys.exc_info()
222 return ''.join(format_exception(etype, value, tb, limit))
223 finally:
224 etype = value = tb = None
Tim Peters58eb11c2004-01-18 20:29:55 +0000225
Neil Schemenauerf607fc52003-11-05 23:03:00 +0000226
Guido van Rossum194e20a1995-09-20 20:31:51 +0000227def print_last(limit=None, file=None):
Tim Petersb90f89a2001-01-15 03:26:36 +0000228 """This is a shorthand for 'print_exception(sys.last_type,
229 sys.last_value, sys.last_traceback, limit, file)'."""
Raymond Hettinger10ff7062002-06-02 03:04:52 +0000230 if file is None:
Tim Petersb90f89a2001-01-15 03:26:36 +0000231 file = sys.stderr
232 print_exception(sys.last_type, sys.last_value, sys.last_traceback,
233 limit, file)
Guido van Rossumdcc057a1996-08-12 23:18:13 +0000234
235
236def print_stack(f=None, limit=None, file=None):
Jeremy Hylton69e9e8b2001-03-21 19:09:31 +0000237 """Print a stack trace from its invocation point.
Tim Petersa19a1682001-03-29 04:36:09 +0000238
Jeremy Hylton69e9e8b2001-03-21 19:09:31 +0000239 The optional 'f' argument can be used to specify an alternate
240 stack frame at which to start. The optional 'limit' and 'file'
241 arguments have the same meaning as for print_exception().
242 """
Tim Petersb90f89a2001-01-15 03:26:36 +0000243 if f is None:
244 try:
245 raise ZeroDivisionError
246 except ZeroDivisionError:
247 f = sys.exc_info()[2].tb_frame.f_back
248 print_list(extract_stack(f, limit), file)
Guido van Rossumdcc057a1996-08-12 23:18:13 +0000249
250def format_stack(f=None, limit=None):
Jeremy Hylton69e9e8b2001-03-21 19:09:31 +0000251 """Shorthand for 'format_list(extract_stack(f, limit))'."""
Tim Petersb90f89a2001-01-15 03:26:36 +0000252 if f is None:
253 try:
254 raise ZeroDivisionError
255 except ZeroDivisionError:
256 f = sys.exc_info()[2].tb_frame.f_back
257 return format_list(extract_stack(f, limit))
Guido van Rossumdcc057a1996-08-12 23:18:13 +0000258
259def extract_stack(f=None, limit = None):
Jeremy Hylton69e9e8b2001-03-21 19:09:31 +0000260 """Extract the raw traceback from the current stack frame.
261
262 The return value has the same format as for extract_tb(). The
263 optional 'f' and 'limit' arguments have the same meaning as for
264 print_stack(). Each item in the list is a quadruple (filename,
265 line number, function name, text), and the entries are in order
266 from oldest to newest stack frame.
267 """
Tim Petersb90f89a2001-01-15 03:26:36 +0000268 if f is None:
269 try:
270 raise ZeroDivisionError
271 except ZeroDivisionError:
272 f = sys.exc_info()[2].tb_frame.f_back
273 if limit is None:
274 if hasattr(sys, 'tracebacklimit'):
275 limit = sys.tracebacklimit
276 list = []
277 n = 0
278 while f is not None and (limit is None or n < limit):
Michael W. Hudsondd32a912002-08-15 14:59:02 +0000279 lineno = f.f_lineno
Tim Petersb90f89a2001-01-15 03:26:36 +0000280 co = f.f_code
281 filename = co.co_filename
282 name = co.co_name
Hye-Shik Chang182ac852004-10-26 09:16:42 +0000283 linecache.checkcache(filename)
Tim Petersb90f89a2001-01-15 03:26:36 +0000284 line = linecache.getline(filename, lineno)
Eric S. Raymondec3bbde2001-02-09 09:39:08 +0000285 if line: line = line.strip()
Tim Petersb90f89a2001-01-15 03:26:36 +0000286 else: line = None
287 list.append((filename, lineno, name, line))
288 f = f.f_back
289 n = n+1
290 list.reverse()
291 return list
Guido van Rossum47529661997-09-26 22:43:02 +0000292
Guido van Rossum47529661997-09-26 22:43:02 +0000293def tb_lineno(tb):
Jeremy Hylton69e9e8b2001-03-21 19:09:31 +0000294 """Calculate correct line number of traceback given in tb.
Guido van Rossume7b146f2000-02-04 15:28:42 +0000295
Michael W. Hudsondd32a912002-08-15 14:59:02 +0000296 Obsolete in 2.3.
Jeremy Hylton69e9e8b2001-03-21 19:09:31 +0000297 """
Michael W. Hudsondd32a912002-08-15 14:59:02 +0000298 return tb.tb_lineno