Fred Drake | 3a0351c | 1998-04-04 07:23:21 +0000 | [diff] [blame] | 1 | \section{Standard Module \module{traceback}} |
Fred Drake | b91e934 | 1998-07-23 17:59:49 +0000 | [diff] [blame] | 2 | \declaremodule{standard}{traceback} |
| 3 | |
| 4 | \modulesynopsis{Print or retrieve a stack traceback.} |
| 5 | |
Guido van Rossum | 81b3060 | 1995-03-01 14:36:00 +0000 | [diff] [blame] | 6 | |
Guido van Rossum | 81b3060 | 1995-03-01 14:36:00 +0000 | [diff] [blame] | 7 | |
Guido van Rossum | bca1207 | 1998-06-17 22:37:26 +0000 | [diff] [blame] | 8 | This module provides a standard interface to extract, format and print |
| 9 | stack traces of Python programs. It exactly mimics the behavior of |
| 10 | the Python interpreter when it prints a stack trace. This is useful |
| 11 | when you want to print stack traces under program control, e.g. in a |
Guido van Rossum | 81b3060 | 1995-03-01 14:36:00 +0000 | [diff] [blame] | 12 | ``wrapper'' around the interpreter. |
| 13 | |
| 14 | The module uses traceback objects --- this is the object type |
| 15 | that is stored in the variables \code{sys.exc_traceback} and |
Guido van Rossum | bca1207 | 1998-06-17 22:37:26 +0000 | [diff] [blame] | 16 | \code{sys.last_traceback} and returned as the third item from |
| 17 | \function{sys.exc_info()}. |
Fred Drake | 266b4c1 | 1998-03-08 06:12:10 +0000 | [diff] [blame] | 18 | \obindex{traceback} |
Guido van Rossum | 81b3060 | 1995-03-01 14:36:00 +0000 | [diff] [blame] | 19 | |
| 20 | The module defines the following functions: |
| 21 | |
Guido van Rossum | bca1207 | 1998-06-17 22:37:26 +0000 | [diff] [blame] | 22 | \begin{funcdesc}{print_tb}{traceback\optional{, limit\optional{, file}}} |
Guido van Rossum | 81b3060 | 1995-03-01 14:36:00 +0000 | [diff] [blame] | 23 | Print up to \var{limit} stack trace entries from \var{traceback}. If |
| 24 | \var{limit} is omitted or \code{None}, all entries are printed. |
Guido van Rossum | bca1207 | 1998-06-17 22:37:26 +0000 | [diff] [blame] | 25 | If \var{file} is omitted or \code{None}, the output goes to |
| 26 | \code{sys.stderr}; otherwise it should be an open file or file-like |
| 27 | object to receive the output. |
Guido van Rossum | 81b3060 | 1995-03-01 14:36:00 +0000 | [diff] [blame] | 28 | \end{funcdesc} |
| 29 | |
Fred Drake | 266b4c1 | 1998-03-08 06:12:10 +0000 | [diff] [blame] | 30 | \begin{funcdesc}{extract_tb}{traceback\optional{, limit}} |
Guido van Rossum | 81b3060 | 1995-03-01 14:36:00 +0000 | [diff] [blame] | 31 | Return a list of up to \var{limit} ``pre-processed'' stack trace |
| 32 | entries extracted from \var{traceback}. It is useful for alternate |
| 33 | formatting of stack traces. If \var{limit} is omitted or \code{None}, |
| 34 | all entries are extracted. A ``pre-processed'' stack trace entry is a |
| 35 | quadruple (\var{filename}, \var{line number}, \var{function name}, |
| 36 | \var{line text}) representing the information that is usually printed |
| 37 | for a stack trace. The \var{line text} is a string with leading and |
| 38 | trailing whitespace stripped; if the source is not available it is |
| 39 | \code{None}. |
| 40 | \end{funcdesc} |
| 41 | |
Guido van Rossum | bca1207 | 1998-06-17 22:37:26 +0000 | [diff] [blame] | 42 | \begin{funcdesc}{print_exception}{type, value, |
| 43 | traceback\optional{, limit\optional{, file}}} |
Guido van Rossum | 81b3060 | 1995-03-01 14:36:00 +0000 | [diff] [blame] | 44 | Print exception information and up to \var{limit} stack trace entries |
Guido van Rossum | bca1207 | 1998-06-17 22:37:26 +0000 | [diff] [blame] | 45 | from \var{traceback} to \var{file}. |
| 46 | This differs from \function{print_tb()} in the |
Guido van Rossum | 81b3060 | 1995-03-01 14:36:00 +0000 | [diff] [blame] | 47 | following ways: (1) if \var{traceback} is not \code{None}, it prints a |
Fred Drake | 266b4c1 | 1998-03-08 06:12:10 +0000 | [diff] [blame] | 48 | header \samp{Traceback (innermost last):}; (2) it prints the |
Guido van Rossum | 81b3060 | 1995-03-01 14:36:00 +0000 | [diff] [blame] | 49 | exception \var{type} and \var{value} after the stack trace; (3) if |
Fred Drake | 266b4c1 | 1998-03-08 06:12:10 +0000 | [diff] [blame] | 50 | \var{type} is \exception{SyntaxError} and \var{value} has the appropriate |
Guido van Rossum | 81b3060 | 1995-03-01 14:36:00 +0000 | [diff] [blame] | 51 | format, it prints the line where the syntax error occurred with a |
Fred Drake | 266b4c1 | 1998-03-08 06:12:10 +0000 | [diff] [blame] | 52 | caret indicating the approximate position of the error. |
Guido van Rossum | 81b3060 | 1995-03-01 14:36:00 +0000 | [diff] [blame] | 53 | \end{funcdesc} |
| 54 | |
Guido van Rossum | bca1207 | 1998-06-17 22:37:26 +0000 | [diff] [blame] | 55 | \begin{funcdesc}{print_exc}{\optional{limit\optional{, file}}} |
Fred Drake | 266b4c1 | 1998-03-08 06:12:10 +0000 | [diff] [blame] | 56 | This is a shorthand for `\code{print_exception(sys.exc_type,} |
Guido van Rossum | bca1207 | 1998-06-17 22:37:26 +0000 | [diff] [blame] | 57 | \code{sys.exc_value,} \code{sys.exc_traceback,} \var{limit}\code{,} |
| 58 | \var{file}\code{)}'. (In fact, it uses \code{sys.exc_info()} to |
| 59 | retrieve the same information in a thread-safe way.) |
Guido van Rossum | 81b3060 | 1995-03-01 14:36:00 +0000 | [diff] [blame] | 60 | \end{funcdesc} |
| 61 | |
Guido van Rossum | bca1207 | 1998-06-17 22:37:26 +0000 | [diff] [blame] | 62 | \begin{funcdesc}{print_last}{\optional{limit\optional{, file}}} |
Fred Drake | 266b4c1 | 1998-03-08 06:12:10 +0000 | [diff] [blame] | 63 | This is a shorthand for `\code{print_exception(sys.last_type,} |
Guido van Rossum | bca1207 | 1998-06-17 22:37:26 +0000 | [diff] [blame] | 64 | \code{sys.last_value,} \code{sys.last_traceback,} \var{limit}\code{,} |
| 65 | \var{file}\code{)}'. |
Guido van Rossum | 81b3060 | 1995-03-01 14:36:00 +0000 | [diff] [blame] | 66 | \end{funcdesc} |
Guido van Rossum | bca1207 | 1998-06-17 22:37:26 +0000 | [diff] [blame] | 67 | |
| 68 | \begin{funcdesc}{print_stack}{\optional{f\optional{, limit\optional{, file}}}} |
| 69 | This function prints a stack trace from its invocation point. The |
| 70 | optional \var{f} argument can be used to specify an alternate stack |
| 71 | frame to start. The optional \var{limit} and \var{file} arguments have the |
| 72 | same meaning as for \function{print_exception()}. |
| 73 | \end{funcdesc} |
| 74 | |
| 75 | \begin{funcdesc}{extract_tb}{tb\optional{, limit}} |
| 76 | Return a list containing the raw (unformatted) traceback information |
| 77 | extracted from the traceback object \var{tb}. The optional |
| 78 | \var{limit} argument has the same meaning as for |
| 79 | \function{print_exception()}. The items in the returned list are |
| 80 | 4-tuples containing the following values: filename, line number, |
| 81 | function name, and source text line. The source text line is stripped |
| 82 | of leading and trailing whitespace; it is \code{None} when the source |
| 83 | text file is unavailable. |
| 84 | \end{funcdesc} |
| 85 | |
| 86 | \begin{funcdesc}{extract_stack}{\optional{f\optional{, limit}}} |
| 87 | Extract the raw traceback from the current stack frame. The return |
| 88 | value has the same format as for \function{extract_tb()}. The |
| 89 | optional \var{f} and \var{limit} arguments have the same meaning as |
| 90 | for \function{print_stack()}. |
| 91 | \end{funcdesc} |
| 92 | |
| 93 | \begin{funcdesc}{format_list}{list} |
| 94 | Given a list of tuples as returned by \function{extract_tb()} or |
| 95 | \function{extract_stack()}, return a list of strings ready for |
| 96 | printing. Each string in the resulting list corresponds to the item |
| 97 | with the same index in the argument list. Each string ends in a |
| 98 | newline; the strings may contain internal newlines as well, for those |
| 99 | items whose source text line is not \code{None}. |
| 100 | \end{funcdesc} |
| 101 | |
| 102 | \begin{funcdesc}{format_exception_only}{type, value} |
| 103 | Format the exception part of a traceback. The arguments are the |
| 104 | exception type and value such as given by \code{sys.last_type} and |
| 105 | \code{sys.last_value}. The return value is a list of strings, each |
| 106 | ending in a newline. Normally, the list contains a single string; |
| 107 | however, for \code{SyntaxError} exceptions, it contains several lines |
| 108 | that (when printed) display detailed information about where the |
| 109 | syntax error occurred. The message indicating which exception |
| 110 | occurred is the always last string in the list. |
| 111 | \end{funcdesc} |
| 112 | |
| 113 | \begin{funcdesc}{format_exception}{type, value, tb\optional{, limit}} |
| 114 | Format a stack trace and the exception information. The arguments |
| 115 | have the same meaning as the corresponding arguments to |
| 116 | \function{print_exception()}. The return value is a list of strings, |
| 117 | each ending in a newline and some containing internal newlines. When |
| 118 | these lines are contatenated and printed, exactly the same text is |
| 119 | printed as does \function{print_exception()}. |
| 120 | \end{funcdesc} |
| 121 | |
| 122 | \begin{funcdesc}{format_tb}{tb\optional{, limit}} |
| 123 | A shorthand for \code{format_list(extract_tb(\var{tb}, \var{limit}))}. |
| 124 | \end{funcdesc} |
| 125 | |
| 126 | \begin{funcdesc}{format_stack}{\optional{f\optional{, limit}}} |
| 127 | A shorthand for \code{format_list(extract_stack(\var{f}, \var{limit}))}. |
| 128 | \end{funcdesc} |
| 129 | |
| 130 | \begin{funcdesc}{tb_lineno}{tb} |
| 131 | This function returns the current line number set in the traceback |
| 132 | object. This is normally the same as the \code{\var{tb}.tb_lineno} |
| 133 | field of the object, but when optimization is used (the -O flag) this |
| 134 | field is not updated correctly; this function calculates the correct |
| 135 | value. |
| 136 | \end{funcdesc} |
| 137 | |
| 138 | A simple example follows: |
| 139 | |
| 140 | \begin{verbatim} |
| 141 | import sys, traceback |
| 142 | |
| 143 | def run_user_code(envdir): |
| 144 | source = raw_input(">>> ") |
| 145 | try: |
| 146 | exec source in envdir |
| 147 | except: |
| 148 | print "Exception in user code:" |
Guido van Rossum | faac013 | 1998-06-17 22:38:09 +0000 | [diff] [blame] | 149 | print '-'*60 |
Guido van Rossum | bca1207 | 1998-06-17 22:37:26 +0000 | [diff] [blame] | 150 | traceback.print_exc(file=sys.stdout) |
Guido van Rossum | faac013 | 1998-06-17 22:38:09 +0000 | [diff] [blame] | 151 | print '-'*60 |
Guido van Rossum | bca1207 | 1998-06-17 22:37:26 +0000 | [diff] [blame] | 152 | |
| 153 | envdir = {} |
| 154 | while 1: |
| 155 | run_user_code(envdir) |
| 156 | \end{verbatim} |