Guido van Rossum | e7b146f | 2000-02-04 15:28:42 +0000 | [diff] [blame] | 1 | """Extract, format and print information about Python stack traces.""" |
Guido van Rossum | 526beed | 1994-07-01 15:36:46 +0000 | [diff] [blame] | 2 | |
| 3 | import linecache |
Guido van Rossum | 526beed | 1994-07-01 15:36:46 +0000 | [diff] [blame] | 4 | import sys |
| 5 | |
Skip Montanaro | 40fc160 | 2001-03-01 04:27:19 +0000 | [diff] [blame] | 6 | __all__ = ['extract_stack', 'extract_tb', 'format_exception', |
| 7 | 'format_exception_only', 'format_list', 'format_stack', |
Neil Schemenauer | f607fc5 | 2003-11-05 23:03:00 +0000 | [diff] [blame] | 8 | 'format_tb', 'print_exc', 'format_exc', 'print_exception', |
Georg Brandl | c737283 | 2008-05-12 18:03:53 +0000 | [diff] [blame] | 9 | 'print_last', 'print_stack', 'print_tb'] |
Skip Montanaro | 40fc160 | 2001-03-01 04:27:19 +0000 | [diff] [blame] | 10 | |
Guido van Rossum | 194e20a | 1995-09-20 20:31:51 +0000 | [diff] [blame] | 11 | def _print(file, str='', terminator='\n'): |
Tim Peters | b90f89a | 2001-01-15 03:26:36 +0000 | [diff] [blame] | 12 | file.write(str+terminator) |
Guido van Rossum | dcc057a | 1996-08-12 23:18:13 +0000 | [diff] [blame] | 13 | |
| 14 | |
| 15 | def print_list(extracted_list, file=None): |
Tim Peters | b90f89a | 2001-01-15 03:26:36 +0000 | [diff] [blame] | 16 | """Print the list of tuples as returned by extract_tb() or |
| 17 | extract_stack() as a formatted stack trace to the given file.""" |
Raymond Hettinger | 10ff706 | 2002-06-02 03:04:52 +0000 | [diff] [blame] | 18 | if file is None: |
Tim Peters | b90f89a | 2001-01-15 03:26:36 +0000 | [diff] [blame] | 19 | file = sys.stderr |
| 20 | for filename, lineno, name, line in extracted_list: |
| 21 | _print(file, |
| 22 | ' File "%s", line %d, in %s' % (filename,lineno,name)) |
| 23 | if line: |
Eric S. Raymond | ec3bbde | 2001-02-09 09:39:08 +0000 | [diff] [blame] | 24 | _print(file, ' %s' % line.strip()) |
Guido van Rossum | dcc057a | 1996-08-12 23:18:13 +0000 | [diff] [blame] | 25 | |
| 26 | def format_list(extracted_list): |
Jeremy Hylton | 69e9e8b | 2001-03-21 19:09:31 +0000 | [diff] [blame] | 27 | """Format a list of traceback entry tuples for printing. |
| 28 | |
| 29 | Given a list of tuples as returned by extract_tb() or |
Tim Peters | b90f89a | 2001-01-15 03:26:36 +0000 | [diff] [blame] | 30 | extract_stack(), return a list of strings ready for printing. |
Jeremy Hylton | 69e9e8b | 2001-03-21 19:09:31 +0000 | [diff] [blame] | 31 | Each string in the resulting list corresponds to the item with the |
| 32 | same index in the argument list. Each string ends in a newline; |
| 33 | the strings may contain internal newlines as well, for those items |
| 34 | whose source text line is not None. |
| 35 | """ |
Tim Peters | b90f89a | 2001-01-15 03:26:36 +0000 | [diff] [blame] | 36 | list = [] |
| 37 | for filename, lineno, name, line in extracted_list: |
| 38 | item = ' File "%s", line %d, in %s\n' % (filename,lineno,name) |
| 39 | if line: |
Eric S. Raymond | ec3bbde | 2001-02-09 09:39:08 +0000 | [diff] [blame] | 40 | item = item + ' %s\n' % line.strip() |
Tim Peters | b90f89a | 2001-01-15 03:26:36 +0000 | [diff] [blame] | 41 | list.append(item) |
| 42 | return list |
| 43 | |
Guido van Rossum | 194e20a | 1995-09-20 20:31:51 +0000 | [diff] [blame] | 44 | |
| 45 | def print_tb(tb, limit=None, file=None): |
Tim Peters | b90f89a | 2001-01-15 03:26:36 +0000 | [diff] [blame] | 46 | """Print up to 'limit' stack trace entries from the traceback 'tb'. |
Jeremy Hylton | 69e9e8b | 2001-03-21 19:09:31 +0000 | [diff] [blame] | 47 | |
| 48 | If 'limit' is omitted or None, all entries are printed. If 'file' |
| 49 | is omitted or None, the output goes to sys.stderr; otherwise |
| 50 | 'file' should be an open file or file-like object with a write() |
| 51 | method. |
| 52 | """ |
Raymond Hettinger | 10ff706 | 2002-06-02 03:04:52 +0000 | [diff] [blame] | 53 | if file is None: |
Tim Peters | b90f89a | 2001-01-15 03:26:36 +0000 | [diff] [blame] | 54 | file = sys.stderr |
| 55 | if limit is None: |
| 56 | if hasattr(sys, 'tracebacklimit'): |
| 57 | limit = sys.tracebacklimit |
| 58 | n = 0 |
| 59 | while tb is not None and (limit is None or n < limit): |
| 60 | f = tb.tb_frame |
Michael W. Hudson | dd32a91 | 2002-08-15 14:59:02 +0000 | [diff] [blame] | 61 | lineno = tb.tb_lineno |
Tim Peters | b90f89a | 2001-01-15 03:26:36 +0000 | [diff] [blame] | 62 | co = f.f_code |
| 63 | filename = co.co_filename |
| 64 | name = co.co_name |
| 65 | _print(file, |
Georg Brandl | 236f797 | 2009-04-05 14:28:42 +0000 | [diff] [blame] | 66 | ' File "%s", line %d, in %s' % (filename, lineno, name)) |
Hye-Shik Chang | 182ac85 | 2004-10-26 09:16:42 +0000 | [diff] [blame] | 67 | linecache.checkcache(filename) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 68 | line = linecache.getline(filename, lineno, f.f_globals) |
Eric S. Raymond | ec3bbde | 2001-02-09 09:39:08 +0000 | [diff] [blame] | 69 | if line: _print(file, ' ' + line.strip()) |
Tim Peters | b90f89a | 2001-01-15 03:26:36 +0000 | [diff] [blame] | 70 | tb = tb.tb_next |
| 71 | n = n+1 |
Guido van Rossum | 526beed | 1994-07-01 15:36:46 +0000 | [diff] [blame] | 72 | |
Georg Brandl | 2ad07c3 | 2009-09-16 14:24:29 +0000 | [diff] [blame] | 73 | def format_tb(tb, limit=None): |
Georg Brandl | 9e091e1 | 2013-10-13 23:32:14 +0200 | [diff] [blame] | 74 | """A shorthand for 'format_list(extract_tb(tb, limit))'.""" |
Tim Peters | b90f89a | 2001-01-15 03:26:36 +0000 | [diff] [blame] | 75 | return format_list(extract_tb(tb, limit)) |
Guido van Rossum | 28e99fe | 1995-08-04 04:30:30 +0000 | [diff] [blame] | 76 | |
Georg Brandl | 2ad07c3 | 2009-09-16 14:24:29 +0000 | [diff] [blame] | 77 | def extract_tb(tb, limit=None): |
Jeremy Hylton | 69e9e8b | 2001-03-21 19:09:31 +0000 | [diff] [blame] | 78 | """Return list of up to limit pre-processed entries from traceback. |
| 79 | |
| 80 | This is useful for alternate formatting of stack traces. If |
| 81 | 'limit' is omitted or None, all entries are extracted. A |
| 82 | pre-processed stack trace entry is a quadruple (filename, line |
| 83 | number, function name, text) representing the information that is |
| 84 | usually printed for a stack trace. The text is a string with |
| 85 | leading and trailing whitespace stripped; if the source is not |
| 86 | available it is None. |
| 87 | """ |
Tim Peters | b90f89a | 2001-01-15 03:26:36 +0000 | [diff] [blame] | 88 | if limit is None: |
| 89 | if hasattr(sys, 'tracebacklimit'): |
| 90 | limit = sys.tracebacklimit |
| 91 | list = [] |
| 92 | n = 0 |
| 93 | while tb is not None and (limit is None or n < limit): |
| 94 | f = tb.tb_frame |
Michael W. Hudson | dd32a91 | 2002-08-15 14:59:02 +0000 | [diff] [blame] | 95 | lineno = tb.tb_lineno |
Tim Peters | b90f89a | 2001-01-15 03:26:36 +0000 | [diff] [blame] | 96 | co = f.f_code |
| 97 | filename = co.co_filename |
| 98 | name = co.co_name |
Hye-Shik Chang | 182ac85 | 2004-10-26 09:16:42 +0000 | [diff] [blame] | 99 | linecache.checkcache(filename) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 100 | line = linecache.getline(filename, lineno, f.f_globals) |
Eric S. Raymond | ec3bbde | 2001-02-09 09:39:08 +0000 | [diff] [blame] | 101 | if line: line = line.strip() |
Tim Peters | b90f89a | 2001-01-15 03:26:36 +0000 | [diff] [blame] | 102 | else: line = None |
| 103 | list.append((filename, lineno, name, line)) |
| 104 | tb = tb.tb_next |
| 105 | n = n+1 |
| 106 | return list |
Guido van Rossum | 526beed | 1994-07-01 15:36:46 +0000 | [diff] [blame] | 107 | |
Guido van Rossum | 28e99fe | 1995-08-04 04:30:30 +0000 | [diff] [blame] | 108 | |
Benjamin Peterson | e652821 | 2008-07-15 15:32:09 +0000 | [diff] [blame] | 109 | _cause_message = ( |
| 110 | "\nThe above exception was the direct cause " |
| 111 | "of the following exception:\n") |
| 112 | |
| 113 | _context_message = ( |
| 114 | "\nDuring handling of the above exception, " |
| 115 | "another exception occurred:\n") |
| 116 | |
| 117 | def _iter_chain(exc, custom_tb=None, seen=None): |
| 118 | if seen is None: |
| 119 | seen = set() |
| 120 | seen.add(exc) |
| 121 | its = [] |
Benjamin Peterson | d5a1c44 | 2012-05-14 22:09:31 -0700 | [diff] [blame] | 122 | context = exc.__context__ |
Benjamin Peterson | e652821 | 2008-07-15 15:32:09 +0000 | [diff] [blame] | 123 | cause = exc.__cause__ |
Benjamin Peterson | d5a1c44 | 2012-05-14 22:09:31 -0700 | [diff] [blame] | 124 | if cause is not None and cause not in seen: |
Nick Coghlan | ab7bf21 | 2012-02-26 17:49:52 +1000 | [diff] [blame] | 125 | its.append(_iter_chain(cause, False, seen)) |
| 126 | its.append([(_cause_message, None)]) |
Benjamin Peterson | d5a1c44 | 2012-05-14 22:09:31 -0700 | [diff] [blame] | 127 | elif (context is not None and |
| 128 | not exc.__suppress_context__ and |
| 129 | context not in seen): |
| 130 | its.append(_iter_chain(context, None, seen)) |
| 131 | its.append([(_context_message, None)]) |
Benjamin Peterson | e652821 | 2008-07-15 15:32:09 +0000 | [diff] [blame] | 132 | its.append([(exc, custom_tb or exc.__traceback__)]) |
Hirokazu Yamamoto | 54a1cc6 | 2008-09-09 17:55:11 +0000 | [diff] [blame] | 133 | # itertools.chain is in an extension module and may be unavailable |
| 134 | for it in its: |
| 135 | for x in it: |
| 136 | yield x |
Benjamin Peterson | e652821 | 2008-07-15 15:32:09 +0000 | [diff] [blame] | 137 | |
| 138 | |
| 139 | def print_exception(etype, value, tb, limit=None, file=None, chain=True): |
Jeremy Hylton | 69e9e8b | 2001-03-21 19:09:31 +0000 | [diff] [blame] | 140 | """Print exception up to 'limit' stack trace entries from 'tb' to 'file'. |
| 141 | |
| 142 | This differs from print_tb() in the following ways: (1) if |
| 143 | traceback is not None, it prints a header "Traceback (most recent |
| 144 | call last):"; (2) it prints the exception type and value after the |
| 145 | stack trace; (3) if type is SyntaxError and value has the |
| 146 | appropriate format, it prints the line where the syntax error |
Tim Peters | b90f89a | 2001-01-15 03:26:36 +0000 | [diff] [blame] | 147 | occurred with a caret on the next line indicating the approximate |
Jeremy Hylton | 69e9e8b | 2001-03-21 19:09:31 +0000 | [diff] [blame] | 148 | position of the error. |
| 149 | """ |
Raymond Hettinger | 10ff706 | 2002-06-02 03:04:52 +0000 | [diff] [blame] | 150 | if file is None: |
Tim Peters | b90f89a | 2001-01-15 03:26:36 +0000 | [diff] [blame] | 151 | file = sys.stderr |
Benjamin Peterson | e652821 | 2008-07-15 15:32:09 +0000 | [diff] [blame] | 152 | if chain: |
| 153 | values = _iter_chain(value, tb) |
| 154 | else: |
| 155 | values = [(value, tb)] |
| 156 | for value, tb in values: |
| 157 | if isinstance(value, str): |
| 158 | _print(file, value) |
| 159 | continue |
| 160 | if tb: |
| 161 | _print(file, 'Traceback (most recent call last):') |
| 162 | print_tb(tb, limit, file) |
| 163 | lines = format_exception_only(type(value), value) |
Georg Brandl | 236f797 | 2009-04-05 14:28:42 +0000 | [diff] [blame] | 164 | for line in lines: |
| 165 | _print(file, line, '') |
Guido van Rossum | 28e99fe | 1995-08-04 04:30:30 +0000 | [diff] [blame] | 166 | |
Benjamin Peterson | e652821 | 2008-07-15 15:32:09 +0000 | [diff] [blame] | 167 | def format_exception(etype, value, tb, limit=None, chain=True): |
Jeremy Hylton | 69e9e8b | 2001-03-21 19:09:31 +0000 | [diff] [blame] | 168 | """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 Peters | b90f89a | 2001-01-15 03:26:36 +0000 | [diff] [blame] | 172 | ending in a newline and some containing internal newlines. When |
| 173 | these lines are concatenated and printed, exactly the same text is |
Jeremy Hylton | 69e9e8b | 2001-03-21 19:09:31 +0000 | [diff] [blame] | 174 | printed as does print_exception(). |
| 175 | """ |
Benjamin Peterson | e652821 | 2008-07-15 15:32:09 +0000 | [diff] [blame] | 176 | list = [] |
| 177 | if chain: |
| 178 | values = _iter_chain(value, tb) |
Tim Peters | b90f89a | 2001-01-15 03:26:36 +0000 | [diff] [blame] | 179 | else: |
Benjamin Peterson | e652821 | 2008-07-15 15:32:09 +0000 | [diff] [blame] | 180 | 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 Peters | b90f89a | 2001-01-15 03:26:36 +0000 | [diff] [blame] | 189 | return list |
Guido van Rossum | 28e99fe | 1995-08-04 04:30:30 +0000 | [diff] [blame] | 190 | |
| 191 | def format_exception_only(etype, value): |
Jeremy Hylton | 69e9e8b | 2001-03-21 19:09:31 +0000 | [diff] [blame] | 192 | """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 Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 196 | 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 Hylton | 69e9e8b | 2001-03-21 19:09:31 +0000 | [diff] [blame] | 206 | """ |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 207 | # 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 Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 212 | stype = etype.__name__ |
Guido van Rossum | 6a2a2a0 | 2006-08-26 20:37:44 +0000 | [diff] [blame] | 213 | smod = etype.__module__ |
Georg Brandl | 1a3284e | 2007-12-02 09:40:06 +0000 | [diff] [blame] | 214 | if smod not in ("__main__", "builtins"): |
Guido van Rossum | 6a2a2a0 | 2006-08-26 20:37:44 +0000 | [diff] [blame] | 215 | stype = smod + '.' + stype |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 216 | |
| 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 Rossum | 33d2689 | 2007-08-05 15:29:28 +0000 | [diff] [blame] | 222 | 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: |
Florent Xicluna | 758fa5e | 2014-01-22 01:11:43 +0100 | [diff] [blame] | 230 | caretspace = badline.rstrip('\n') |
| 231 | offset = min(len(caretspace), offset) - 1 |
| 232 | caretspace = caretspace[:offset].lstrip() |
Guido van Rossum | 33d2689 | 2007-08-05 15:29:28 +0000 | [diff] [blame] | 233 | # non-space whitespace (likes tabs) must be kept for alignment |
| 234 | caretspace = ((c.isspace() and c or ' ') for c in caretspace) |
Florent Xicluna | 758fa5e | 2014-01-22 01:11:43 +0100 | [diff] [blame] | 235 | lines.append(' %s^\n' % ''.join(caretspace)) |
Guido van Rossum | 33d2689 | 2007-08-05 15:29:28 +0000 | [diff] [blame] | 236 | msg = value.msg or "<no detail available>" |
| 237 | lines.append("%s: %s\n" % (stype, msg)) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 238 | return lines |
| 239 | |
| 240 | def _format_final_exc_line(etype, value): |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 241 | valuestr = _some_str(value) |
| 242 | if value is None or not valuestr: |
| 243 | line = "%s\n" % etype |
Tim Peters | b90f89a | 2001-01-15 03:26:36 +0000 | [diff] [blame] | 244 | else: |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 245 | line = "%s: %s\n" % (etype, valuestr) |
| 246 | return line |
Guido van Rossum | 28e99fe | 1995-08-04 04:30:30 +0000 | [diff] [blame] | 247 | |
Guido van Rossum | 2823f03 | 2000-08-22 02:04:46 +0000 | [diff] [blame] | 248 | def _some_str(value): |
Tim Peters | b90f89a | 2001-01-15 03:26:36 +0000 | [diff] [blame] | 249 | try: |
| 250 | return str(value) |
| 251 | except: |
| 252 | return '<unprintable %s object>' % type(value).__name__ |
Guido van Rossum | 2823f03 | 2000-08-22 02:04:46 +0000 | [diff] [blame] | 253 | |
Guido van Rossum | 526beed | 1994-07-01 15:36:46 +0000 | [diff] [blame] | 254 | |
Benjamin Peterson | e652821 | 2008-07-15 15:32:09 +0000 | [diff] [blame] | 255 | def print_exc(limit=None, file=None, chain=True): |
Neal Norwitz | ac3625f | 2006-03-17 05:49:33 +0000 | [diff] [blame] | 256 | """Shorthand for 'print_exception(*sys.exc_info(), limit, file)'.""" |
Raymond Hettinger | 10ff706 | 2002-06-02 03:04:52 +0000 | [diff] [blame] | 257 | if file is None: |
Tim Peters | b90f89a | 2001-01-15 03:26:36 +0000 | [diff] [blame] | 258 | file = sys.stderr |
| 259 | try: |
| 260 | etype, value, tb = sys.exc_info() |
Benjamin Peterson | e652821 | 2008-07-15 15:32:09 +0000 | [diff] [blame] | 261 | print_exception(etype, value, tb, limit, file, chain) |
Tim Peters | b90f89a | 2001-01-15 03:26:36 +0000 | [diff] [blame] | 262 | finally: |
| 263 | etype = value = tb = None |
Guido van Rossum | 526beed | 1994-07-01 15:36:46 +0000 | [diff] [blame] | 264 | |
Neil Schemenauer | f607fc5 | 2003-11-05 23:03:00 +0000 | [diff] [blame] | 265 | |
Benjamin Peterson | e652821 | 2008-07-15 15:32:09 +0000 | [diff] [blame] | 266 | def format_exc(limit=None, chain=True): |
Neil Schemenauer | f607fc5 | 2003-11-05 23:03:00 +0000 | [diff] [blame] | 267 | """Like print_exc() but return a string.""" |
| 268 | try: |
| 269 | etype, value, tb = sys.exc_info() |
Benjamin Peterson | e652821 | 2008-07-15 15:32:09 +0000 | [diff] [blame] | 270 | return ''.join( |
| 271 | format_exception(etype, value, tb, limit, chain)) |
Neil Schemenauer | f607fc5 | 2003-11-05 23:03:00 +0000 | [diff] [blame] | 272 | finally: |
| 273 | etype = value = tb = None |
Tim Peters | 58eb11c | 2004-01-18 20:29:55 +0000 | [diff] [blame] | 274 | |
Neil Schemenauer | f607fc5 | 2003-11-05 23:03:00 +0000 | [diff] [blame] | 275 | |
Benjamin Peterson | e652821 | 2008-07-15 15:32:09 +0000 | [diff] [blame] | 276 | def print_last(limit=None, file=None, chain=True): |
Tim Peters | b90f89a | 2001-01-15 03:26:36 +0000 | [diff] [blame] | 277 | """This is a shorthand for 'print_exception(sys.last_type, |
| 278 | sys.last_value, sys.last_traceback, limit, file)'.""" |
Benjamin Peterson | e549ead | 2009-03-28 21:42:05 +0000 | [diff] [blame] | 279 | if not hasattr(sys, "last_type"): |
| 280 | raise ValueError("no last exception") |
Raymond Hettinger | 10ff706 | 2002-06-02 03:04:52 +0000 | [diff] [blame] | 281 | if file is None: |
Tim Peters | b90f89a | 2001-01-15 03:26:36 +0000 | [diff] [blame] | 282 | file = sys.stderr |
| 283 | print_exception(sys.last_type, sys.last_value, sys.last_traceback, |
Benjamin Peterson | e652821 | 2008-07-15 15:32:09 +0000 | [diff] [blame] | 284 | limit, file, chain) |
Guido van Rossum | dcc057a | 1996-08-12 23:18:13 +0000 | [diff] [blame] | 285 | |
| 286 | |
| 287 | def print_stack(f=None, limit=None, file=None): |
Jeremy Hylton | 69e9e8b | 2001-03-21 19:09:31 +0000 | [diff] [blame] | 288 | """Print a stack trace from its invocation point. |
Tim Peters | a19a168 | 2001-03-29 04:36:09 +0000 | [diff] [blame] | 289 | |
Jeremy Hylton | 69e9e8b | 2001-03-21 19:09:31 +0000 | [diff] [blame] | 290 | The optional 'f' argument can be used to specify an alternate |
| 291 | stack frame at which to start. The optional 'limit' and 'file' |
| 292 | arguments have the same meaning as for print_exception(). |
| 293 | """ |
Tim Peters | b90f89a | 2001-01-15 03:26:36 +0000 | [diff] [blame] | 294 | if f is None: |
| 295 | try: |
| 296 | raise ZeroDivisionError |
| 297 | except ZeroDivisionError: |
| 298 | f = sys.exc_info()[2].tb_frame.f_back |
| 299 | print_list(extract_stack(f, limit), file) |
Guido van Rossum | dcc057a | 1996-08-12 23:18:13 +0000 | [diff] [blame] | 300 | |
| 301 | def format_stack(f=None, limit=None): |
Jeremy Hylton | 69e9e8b | 2001-03-21 19:09:31 +0000 | [diff] [blame] | 302 | """Shorthand for 'format_list(extract_stack(f, limit))'.""" |
Tim Peters | b90f89a | 2001-01-15 03:26:36 +0000 | [diff] [blame] | 303 | if f is None: |
| 304 | try: |
| 305 | raise ZeroDivisionError |
| 306 | except ZeroDivisionError: |
| 307 | f = sys.exc_info()[2].tb_frame.f_back |
| 308 | return format_list(extract_stack(f, limit)) |
Guido van Rossum | dcc057a | 1996-08-12 23:18:13 +0000 | [diff] [blame] | 309 | |
Georg Brandl | 2ad07c3 | 2009-09-16 14:24:29 +0000 | [diff] [blame] | 310 | def extract_stack(f=None, limit=None): |
Jeremy Hylton | 69e9e8b | 2001-03-21 19:09:31 +0000 | [diff] [blame] | 311 | """Extract the raw traceback from the current stack frame. |
| 312 | |
| 313 | The return value has the same format as for extract_tb(). The |
| 314 | optional 'f' and 'limit' arguments have the same meaning as for |
| 315 | print_stack(). Each item in the list is a quadruple (filename, |
| 316 | line number, function name, text), and the entries are in order |
| 317 | from oldest to newest stack frame. |
| 318 | """ |
Tim Peters | b90f89a | 2001-01-15 03:26:36 +0000 | [diff] [blame] | 319 | if f is None: |
| 320 | try: |
| 321 | raise ZeroDivisionError |
| 322 | except ZeroDivisionError: |
| 323 | f = sys.exc_info()[2].tb_frame.f_back |
| 324 | if limit is None: |
| 325 | if hasattr(sys, 'tracebacklimit'): |
| 326 | limit = sys.tracebacklimit |
| 327 | list = [] |
| 328 | n = 0 |
| 329 | while f is not None and (limit is None or n < limit): |
Michael W. Hudson | dd32a91 | 2002-08-15 14:59:02 +0000 | [diff] [blame] | 330 | lineno = f.f_lineno |
Tim Peters | b90f89a | 2001-01-15 03:26:36 +0000 | [diff] [blame] | 331 | co = f.f_code |
| 332 | filename = co.co_filename |
| 333 | name = co.co_name |
Hye-Shik Chang | 182ac85 | 2004-10-26 09:16:42 +0000 | [diff] [blame] | 334 | linecache.checkcache(filename) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 335 | line = linecache.getline(filename, lineno, f.f_globals) |
Eric S. Raymond | ec3bbde | 2001-02-09 09:39:08 +0000 | [diff] [blame] | 336 | if line: line = line.strip() |
Tim Peters | b90f89a | 2001-01-15 03:26:36 +0000 | [diff] [blame] | 337 | else: line = None |
| 338 | list.append((filename, lineno, name, line)) |
| 339 | f = f.f_back |
| 340 | n = n+1 |
| 341 | list.reverse() |
| 342 | return list |