Show More
@@ -1,1358 +1,1360 b'' | |||||
1 | # -*- coding: utf-8 -*- |
|
1 | # -*- coding: utf-8 -*- | |
2 | """ |
|
2 | """ | |
3 | Verbose and colourful traceback formatting. |
|
3 | Verbose and colourful traceback formatting. | |
4 |
|
4 | |||
5 | **ColorTB** |
|
5 | **ColorTB** | |
6 |
|
6 | |||
7 | I've always found it a bit hard to visually parse tracebacks in Python. The |
|
7 | I've always found it a bit hard to visually parse tracebacks in Python. The | |
8 | ColorTB class is a solution to that problem. It colors the different parts of a |
|
8 | ColorTB class is a solution to that problem. It colors the different parts of a | |
9 | traceback in a manner similar to what you would expect from a syntax-highlighting |
|
9 | traceback in a manner similar to what you would expect from a syntax-highlighting | |
10 | text editor. |
|
10 | text editor. | |
11 |
|
11 | |||
12 | Installation instructions for ColorTB:: |
|
12 | Installation instructions for ColorTB:: | |
13 |
|
13 | |||
14 | import sys,ultratb |
|
14 | import sys,ultratb | |
15 | sys.excepthook = ultratb.ColorTB() |
|
15 | sys.excepthook = ultratb.ColorTB() | |
16 |
|
16 | |||
17 | **VerboseTB** |
|
17 | **VerboseTB** | |
18 |
|
18 | |||
19 | I've also included a port of Ka-Ping Yee's "cgitb.py" that produces all kinds |
|
19 | I've also included a port of Ka-Ping Yee's "cgitb.py" that produces all kinds | |
20 | of useful info when a traceback occurs. Ping originally had it spit out HTML |
|
20 | of useful info when a traceback occurs. Ping originally had it spit out HTML | |
21 | and intended it for CGI programmers, but why should they have all the fun? I |
|
21 | and intended it for CGI programmers, but why should they have all the fun? I | |
22 | altered it to spit out colored text to the terminal. It's a bit overwhelming, |
|
22 | altered it to spit out colored text to the terminal. It's a bit overwhelming, | |
23 | but kind of neat, and maybe useful for long-running programs that you believe |
|
23 | but kind of neat, and maybe useful for long-running programs that you believe | |
24 | are bug-free. If a crash *does* occur in that type of program you want details. |
|
24 | are bug-free. If a crash *does* occur in that type of program you want details. | |
25 | Give it a shot--you'll love it or you'll hate it. |
|
25 | Give it a shot--you'll love it or you'll hate it. | |
26 |
|
26 | |||
27 | .. note:: |
|
27 | .. note:: | |
28 |
|
28 | |||
29 | The Verbose mode prints the variables currently visible where the exception |
|
29 | The Verbose mode prints the variables currently visible where the exception | |
30 | happened (shortening their strings if too long). This can potentially be |
|
30 | happened (shortening their strings if too long). This can potentially be | |
31 | very slow, if you happen to have a huge data structure whose string |
|
31 | very slow, if you happen to have a huge data structure whose string | |
32 | representation is complex to compute. Your computer may appear to freeze for |
|
32 | representation is complex to compute. Your computer may appear to freeze for | |
33 | a while with cpu usage at 100%. If this occurs, you can cancel the traceback |
|
33 | a while with cpu usage at 100%. If this occurs, you can cancel the traceback | |
34 | with Ctrl-C (maybe hitting it more than once). |
|
34 | with Ctrl-C (maybe hitting it more than once). | |
35 |
|
35 | |||
36 | If you encounter this kind of situation often, you may want to use the |
|
36 | If you encounter this kind of situation often, you may want to use the | |
37 | Verbose_novars mode instead of the regular Verbose, which avoids formatting |
|
37 | Verbose_novars mode instead of the regular Verbose, which avoids formatting | |
38 | variables (but otherwise includes the information and context given by |
|
38 | variables (but otherwise includes the information and context given by | |
39 | Verbose). |
|
39 | Verbose). | |
40 |
|
40 | |||
41 |
|
41 | |||
42 | Installation instructions for VerboseTB:: |
|
42 | Installation instructions for VerboseTB:: | |
43 |
|
43 | |||
44 | import sys,ultratb |
|
44 | import sys,ultratb | |
45 | sys.excepthook = ultratb.VerboseTB() |
|
45 | sys.excepthook = ultratb.VerboseTB() | |
46 |
|
46 | |||
47 | Note: Much of the code in this module was lifted verbatim from the standard |
|
47 | Note: Much of the code in this module was lifted verbatim from the standard | |
48 | library module 'traceback.py' and Ka-Ping Yee's 'cgitb.py'. |
|
48 | library module 'traceback.py' and Ka-Ping Yee's 'cgitb.py'. | |
49 |
|
49 | |||
50 | Color schemes |
|
50 | Color schemes | |
51 | ------------- |
|
51 | ------------- | |
52 |
|
52 | |||
53 | The colors are defined in the class TBTools through the use of the |
|
53 | The colors are defined in the class TBTools through the use of the | |
54 | ColorSchemeTable class. Currently the following exist: |
|
54 | ColorSchemeTable class. Currently the following exist: | |
55 |
|
55 | |||
56 | - NoColor: allows all of this module to be used in any terminal (the color |
|
56 | - NoColor: allows all of this module to be used in any terminal (the color | |
57 | escapes are just dummy blank strings). |
|
57 | escapes are just dummy blank strings). | |
58 |
|
58 | |||
59 | - Linux: is meant to look good in a terminal like the Linux console (black |
|
59 | - Linux: is meant to look good in a terminal like the Linux console (black | |
60 | or very dark background). |
|
60 | or very dark background). | |
61 |
|
61 | |||
62 | - LightBG: similar to Linux but swaps dark/light colors to be more readable |
|
62 | - LightBG: similar to Linux but swaps dark/light colors to be more readable | |
63 | in light background terminals. |
|
63 | in light background terminals. | |
64 |
|
64 | |||
65 | You can implement other color schemes easily, the syntax is fairly |
|
65 | You can implement other color schemes easily, the syntax is fairly | |
66 | self-explanatory. Please send back new schemes you develop to the author for |
|
66 | self-explanatory. Please send back new schemes you develop to the author for | |
67 | possible inclusion in future releases. |
|
67 | possible inclusion in future releases. | |
68 |
|
68 | |||
69 | Inheritance diagram: |
|
69 | Inheritance diagram: | |
70 |
|
70 | |||
71 | .. inheritance-diagram:: IPython.core.ultratb |
|
71 | .. inheritance-diagram:: IPython.core.ultratb | |
72 | :parts: 3 |
|
72 | :parts: 3 | |
73 | """ |
|
73 | """ | |
74 |
|
74 | |||
75 | #***************************************************************************** |
|
75 | #***************************************************************************** | |
76 | # Copyright (C) 2001 Nathaniel Gray <n8gray@caltech.edu> |
|
76 | # Copyright (C) 2001 Nathaniel Gray <n8gray@caltech.edu> | |
77 | # Copyright (C) 2001-2004 Fernando Perez <fperez@colorado.edu> |
|
77 | # Copyright (C) 2001-2004 Fernando Perez <fperez@colorado.edu> | |
78 | # |
|
78 | # | |
79 | # Distributed under the terms of the BSD License. The full license is in |
|
79 | # Distributed under the terms of the BSD License. The full license is in | |
80 | # the file COPYING, distributed as part of this software. |
|
80 | # the file COPYING, distributed as part of this software. | |
81 | #***************************************************************************** |
|
81 | #***************************************************************************** | |
82 |
|
82 | |||
83 | from __future__ import unicode_literals |
|
83 | from __future__ import unicode_literals | |
84 | from __future__ import print_function |
|
84 | from __future__ import print_function | |
85 |
|
85 | |||
86 | import inspect |
|
86 | import inspect | |
87 | import keyword |
|
87 | import keyword | |
88 | import linecache |
|
88 | import linecache | |
89 | import os |
|
89 | import os | |
90 | import pydoc |
|
90 | import pydoc | |
91 | import re |
|
91 | import re | |
92 | import sys |
|
92 | import sys | |
93 | import time |
|
93 | import time | |
94 | import tokenize |
|
94 | import tokenize | |
95 | import traceback |
|
95 | import traceback | |
96 | import types |
|
96 | import types | |
97 |
|
97 | |||
98 | try: # Python 2 |
|
98 | try: # Python 2 | |
99 | generate_tokens = tokenize.generate_tokens |
|
99 | generate_tokens = tokenize.generate_tokens | |
100 | except AttributeError: # Python 3 |
|
100 | except AttributeError: # Python 3 | |
101 | generate_tokens = tokenize.tokenize |
|
101 | generate_tokens = tokenize.tokenize | |
102 |
|
102 | |||
103 | # For purposes of monkeypatching inspect to fix a bug in it. |
|
103 | # For purposes of monkeypatching inspect to fix a bug in it. | |
104 | from inspect import getsourcefile, getfile, getmodule, \ |
|
104 | from inspect import getsourcefile, getfile, getmodule, \ | |
105 | ismodule, isclass, ismethod, isfunction, istraceback, isframe, iscode |
|
105 | ismodule, isclass, ismethod, isfunction, istraceback, isframe, iscode | |
106 |
|
106 | |||
107 | # IPython's own modules |
|
107 | # IPython's own modules | |
108 | # Modified pdb which doesn't damage IPython's readline handling |
|
108 | # Modified pdb which doesn't damage IPython's readline handling | |
109 | from IPython import get_ipython |
|
109 | from IPython import get_ipython | |
110 | from IPython.core import debugger |
|
110 | from IPython.core import debugger | |
111 | from IPython.core.display_trap import DisplayTrap |
|
111 | from IPython.core.display_trap import DisplayTrap | |
112 | from IPython.core.excolors import exception_colors |
|
112 | from IPython.core.excolors import exception_colors | |
113 | from IPython.utils import PyColorize |
|
113 | from IPython.utils import PyColorize | |
114 | from IPython.utils import io |
|
114 | from IPython.utils import io | |
115 | from IPython.utils import openpy |
|
115 | from IPython.utils import openpy | |
116 | from IPython.utils import path as util_path |
|
116 | from IPython.utils import path as util_path | |
117 | from IPython.utils import py3compat |
|
117 | from IPython.utils import py3compat | |
118 | from IPython.utils import ulinecache |
|
118 | from IPython.utils import ulinecache | |
119 | from IPython.utils.data import uniq_stable |
|
119 | from IPython.utils.data import uniq_stable | |
120 | from IPython.utils.warn import info, error |
|
120 | from IPython.utils.warn import info, error | |
121 |
|
121 | |||
122 | # Globals |
|
122 | # Globals | |
123 | # amount of space to put line numbers before verbose tracebacks |
|
123 | # amount of space to put line numbers before verbose tracebacks | |
124 | INDENT_SIZE = 8 |
|
124 | INDENT_SIZE = 8 | |
125 |
|
125 | |||
126 | # Default color scheme. This is used, for example, by the traceback |
|
126 | # Default color scheme. This is used, for example, by the traceback | |
127 | # formatter. When running in an actual IPython instance, the user's rc.colors |
|
127 | # formatter. When running in an actual IPython instance, the user's rc.colors | |
128 | # value is used, but having a module global makes this functionality available |
|
128 | # value is used, but having a module global makes this functionality available | |
129 | # to users of ultratb who are NOT running inside ipython. |
|
129 | # to users of ultratb who are NOT running inside ipython. | |
130 | DEFAULT_SCHEME = 'NoColor' |
|
130 | DEFAULT_SCHEME = 'NoColor' | |
131 |
|
131 | |||
132 | # --------------------------------------------------------------------------- |
|
132 | # --------------------------------------------------------------------------- | |
133 | # Code begins |
|
133 | # Code begins | |
134 |
|
134 | |||
135 | # Utility functions |
|
135 | # Utility functions | |
136 | def inspect_error(): |
|
136 | def inspect_error(): | |
137 | """Print a message about internal inspect errors. |
|
137 | """Print a message about internal inspect errors. | |
138 |
|
138 | |||
139 | These are unfortunately quite common.""" |
|
139 | These are unfortunately quite common.""" | |
140 |
|
140 | |||
141 | error('Internal Python error in the inspect module.\n' |
|
141 | error('Internal Python error in the inspect module.\n' | |
142 | 'Below is the traceback from this internal error.\n') |
|
142 | 'Below is the traceback from this internal error.\n') | |
143 |
|
143 | |||
144 |
|
144 | |||
145 | # This function is a monkeypatch we apply to the Python inspect module. We have |
|
145 | # This function is a monkeypatch we apply to the Python inspect module. We have | |
146 | # now found when it's needed (see discussion on issue gh-1456), and we have a |
|
146 | # now found when it's needed (see discussion on issue gh-1456), and we have a | |
147 | # test case (IPython.core.tests.test_ultratb.ChangedPyFileTest) that fails if |
|
147 | # test case (IPython.core.tests.test_ultratb.ChangedPyFileTest) that fails if | |
148 | # the monkeypatch is not applied. TK, Aug 2012. |
|
148 | # the monkeypatch is not applied. TK, Aug 2012. | |
149 | def findsource(object): |
|
149 | def findsource(object): | |
150 | """Return the entire source file and starting line number for an object. |
|
150 | """Return the entire source file and starting line number for an object. | |
151 |
|
151 | |||
152 | The argument may be a module, class, method, function, traceback, frame, |
|
152 | The argument may be a module, class, method, function, traceback, frame, | |
153 | or code object. The source code is returned as a list of all the lines |
|
153 | or code object. The source code is returned as a list of all the lines | |
154 | in the file and the line number indexes a line in that list. An IOError |
|
154 | in the file and the line number indexes a line in that list. An IOError | |
155 | is raised if the source code cannot be retrieved. |
|
155 | is raised if the source code cannot be retrieved. | |
156 |
|
156 | |||
157 | FIXED version with which we monkeypatch the stdlib to work around a bug.""" |
|
157 | FIXED version with which we monkeypatch the stdlib to work around a bug.""" | |
158 |
|
158 | |||
159 | file = getsourcefile(object) or getfile(object) |
|
159 | file = getsourcefile(object) or getfile(object) | |
160 | # If the object is a frame, then trying to get the globals dict from its |
|
160 | # If the object is a frame, then trying to get the globals dict from its | |
161 | # module won't work. Instead, the frame object itself has the globals |
|
161 | # module won't work. Instead, the frame object itself has the globals | |
162 | # dictionary. |
|
162 | # dictionary. | |
163 | globals_dict = None |
|
163 | globals_dict = None | |
164 | if inspect.isframe(object): |
|
164 | if inspect.isframe(object): | |
165 | # XXX: can this ever be false? |
|
165 | # XXX: can this ever be false? | |
166 | globals_dict = object.f_globals |
|
166 | globals_dict = object.f_globals | |
167 | else: |
|
167 | else: | |
168 | module = getmodule(object, file) |
|
168 | module = getmodule(object, file) | |
169 | if module: |
|
169 | if module: | |
170 | globals_dict = module.__dict__ |
|
170 | globals_dict = module.__dict__ | |
171 | lines = linecache.getlines(file, globals_dict) |
|
171 | lines = linecache.getlines(file, globals_dict) | |
172 | if not lines: |
|
172 | if not lines: | |
173 | raise IOError('could not get source code') |
|
173 | raise IOError('could not get source code') | |
174 |
|
174 | |||
175 | if ismodule(object): |
|
175 | if ismodule(object): | |
176 | return lines, 0 |
|
176 | return lines, 0 | |
177 |
|
177 | |||
178 | if isclass(object): |
|
178 | if isclass(object): | |
179 | name = object.__name__ |
|
179 | name = object.__name__ | |
180 | pat = re.compile(r'^(\s*)class\s*' + name + r'\b') |
|
180 | pat = re.compile(r'^(\s*)class\s*' + name + r'\b') | |
181 | # make some effort to find the best matching class definition: |
|
181 | # make some effort to find the best matching class definition: | |
182 | # use the one with the least indentation, which is the one |
|
182 | # use the one with the least indentation, which is the one | |
183 | # that's most probably not inside a function definition. |
|
183 | # that's most probably not inside a function definition. | |
184 | candidates = [] |
|
184 | candidates = [] | |
185 | for i in range(len(lines)): |
|
185 | for i in range(len(lines)): | |
186 | match = pat.match(lines[i]) |
|
186 | match = pat.match(lines[i]) | |
187 | if match: |
|
187 | if match: | |
188 | # if it's at toplevel, it's already the best one |
|
188 | # if it's at toplevel, it's already the best one | |
189 | if lines[i][0] == 'c': |
|
189 | if lines[i][0] == 'c': | |
190 | return lines, i |
|
190 | return lines, i | |
191 | # else add whitespace to candidate list |
|
191 | # else add whitespace to candidate list | |
192 | candidates.append((match.group(1), i)) |
|
192 | candidates.append((match.group(1), i)) | |
193 | if candidates: |
|
193 | if candidates: | |
194 | # this will sort by whitespace, and by line number, |
|
194 | # this will sort by whitespace, and by line number, | |
195 | # less whitespace first |
|
195 | # less whitespace first | |
196 | candidates.sort() |
|
196 | candidates.sort() | |
197 | return lines, candidates[0][1] |
|
197 | return lines, candidates[0][1] | |
198 | else: |
|
198 | else: | |
199 | raise IOError('could not find class definition') |
|
199 | raise IOError('could not find class definition') | |
200 |
|
200 | |||
201 | if ismethod(object): |
|
201 | if ismethod(object): | |
202 | object = object.__func__ |
|
202 | object = object.__func__ | |
203 | if isfunction(object): |
|
203 | if isfunction(object): | |
204 | object = object.__code__ |
|
204 | object = object.__code__ | |
205 | if istraceback(object): |
|
205 | if istraceback(object): | |
206 | object = object.tb_frame |
|
206 | object = object.tb_frame | |
207 | if isframe(object): |
|
207 | if isframe(object): | |
208 | object = object.f_code |
|
208 | object = object.f_code | |
209 | if iscode(object): |
|
209 | if iscode(object): | |
210 | if not hasattr(object, 'co_firstlineno'): |
|
210 | if not hasattr(object, 'co_firstlineno'): | |
211 | raise IOError('could not find function definition') |
|
211 | raise IOError('could not find function definition') | |
212 | pat = re.compile(r'^(\s*def\s)|(.*(?<!\w)lambda(:|\s))|^(\s*@)') |
|
212 | pat = re.compile(r'^(\s*def\s)|(.*(?<!\w)lambda(:|\s))|^(\s*@)') | |
213 | pmatch = pat.match |
|
213 | pmatch = pat.match | |
214 | # fperez - fix: sometimes, co_firstlineno can give a number larger than |
|
214 | # fperez - fix: sometimes, co_firstlineno can give a number larger than | |
215 | # the length of lines, which causes an error. Safeguard against that. |
|
215 | # the length of lines, which causes an error. Safeguard against that. | |
216 | lnum = min(object.co_firstlineno, len(lines)) - 1 |
|
216 | lnum = min(object.co_firstlineno, len(lines)) - 1 | |
217 | while lnum > 0: |
|
217 | while lnum > 0: | |
218 | if pmatch(lines[lnum]): break |
|
218 | if pmatch(lines[lnum]): break | |
219 | lnum -= 1 |
|
219 | lnum -= 1 | |
220 |
|
220 | |||
221 | return lines, lnum |
|
221 | return lines, lnum | |
222 | raise IOError('could not find code object') |
|
222 | raise IOError('could not find code object') | |
223 |
|
223 | |||
224 |
|
224 | |||
225 | # Monkeypatch inspect to apply our bugfix. |
|
225 | # Monkeypatch inspect to apply our bugfix. | |
226 | def with_patch_inspect(f): |
|
226 | def with_patch_inspect(f): | |
227 | """decorator for monkeypatching inspect.findsource""" |
|
227 | """decorator for monkeypatching inspect.findsource""" | |
228 |
|
228 | |||
229 | def wrapped(*args, **kwargs): |
|
229 | def wrapped(*args, **kwargs): | |
230 | save_findsource = inspect.findsource |
|
230 | save_findsource = inspect.findsource | |
231 | inspect.findsource = findsource |
|
231 | inspect.findsource = findsource | |
232 | try: |
|
232 | try: | |
233 | return f(*args, **kwargs) |
|
233 | return f(*args, **kwargs) | |
234 | finally: |
|
234 | finally: | |
235 | inspect.findsource = save_findsource |
|
235 | inspect.findsource = save_findsource | |
236 |
|
236 | |||
237 | return wrapped |
|
237 | return wrapped | |
238 |
|
238 | |||
239 |
|
239 | |||
240 | def fix_frame_records_filenames(records): |
|
240 | def fix_frame_records_filenames(records): | |
241 | """Try to fix the filenames in each record from inspect.getinnerframes(). |
|
241 | """Try to fix the filenames in each record from inspect.getinnerframes(). | |
242 |
|
242 | |||
243 | Particularly, modules loaded from within zip files have useless filenames |
|
243 | Particularly, modules loaded from within zip files have useless filenames | |
244 | attached to their code object, and inspect.getinnerframes() just uses it. |
|
244 | attached to their code object, and inspect.getinnerframes() just uses it. | |
245 | """ |
|
245 | """ | |
246 | fixed_records = [] |
|
246 | fixed_records = [] | |
247 | for frame, filename, line_no, func_name, lines, index in records: |
|
247 | for frame, filename, line_no, func_name, lines, index in records: | |
248 | # Look inside the frame's globals dictionary for __file__, which should |
|
248 | # Look inside the frame's globals dictionary for __file__, which should | |
249 | # be better. |
|
249 | # be better. | |
250 | better_fn = frame.f_globals.get('__file__', None) |
|
250 | better_fn = frame.f_globals.get('__file__', None) | |
251 | if isinstance(better_fn, str): |
|
251 | if isinstance(better_fn, str): | |
252 | # Check the type just in case someone did something weird with |
|
252 | # Check the type just in case someone did something weird with | |
253 | # __file__. It might also be None if the error occurred during |
|
253 | # __file__. It might also be None if the error occurred during | |
254 | # import. |
|
254 | # import. | |
255 | filename = better_fn |
|
255 | filename = better_fn | |
256 | fixed_records.append((frame, filename, line_no, func_name, lines, index)) |
|
256 | fixed_records.append((frame, filename, line_no, func_name, lines, index)) | |
257 | return fixed_records |
|
257 | return fixed_records | |
258 |
|
258 | |||
259 |
|
259 | |||
260 | @with_patch_inspect |
|
260 | @with_patch_inspect | |
261 | def _fixed_getinnerframes(etb, context=1, tb_offset=0): |
|
261 | def _fixed_getinnerframes(etb, context=1, tb_offset=0): | |
262 | LNUM_POS, LINES_POS, INDEX_POS = 2, 4, 5 |
|
262 | LNUM_POS, LINES_POS, INDEX_POS = 2, 4, 5 | |
263 |
|
263 | |||
264 | records = fix_frame_records_filenames(inspect.getinnerframes(etb, context)) |
|
264 | records = fix_frame_records_filenames(inspect.getinnerframes(etb, context)) | |
265 | # If the error is at the console, don't build any context, since it would |
|
265 | # If the error is at the console, don't build any context, since it would | |
266 | # otherwise produce 5 blank lines printed out (there is no file at the |
|
266 | # otherwise produce 5 blank lines printed out (there is no file at the | |
267 | # console) |
|
267 | # console) | |
268 | rec_check = records[tb_offset:] |
|
268 | rec_check = records[tb_offset:] | |
269 | try: |
|
269 | try: | |
270 | rname = rec_check[0][1] |
|
270 | rname = rec_check[0][1] | |
271 | if rname == '<ipython console>' or rname.endswith('<string>'): |
|
271 | if rname == '<ipython console>' or rname.endswith('<string>'): | |
272 | return rec_check |
|
272 | return rec_check | |
273 | except IndexError: |
|
273 | except IndexError: | |
274 | pass |
|
274 | pass | |
275 |
|
275 | |||
276 | aux = traceback.extract_tb(etb) |
|
276 | aux = traceback.extract_tb(etb) | |
277 | assert len(records) == len(aux) |
|
277 | assert len(records) == len(aux) | |
278 | for i, (file, lnum, _, _) in zip(range(len(records)), aux): |
|
278 | for i, (file, lnum, _, _) in zip(range(len(records)), aux): | |
279 | maybeStart = lnum - 1 - context // 2 |
|
279 | maybeStart = lnum - 1 - context // 2 | |
280 | start = max(maybeStart, 0) |
|
280 | start = max(maybeStart, 0) | |
281 | end = start + context |
|
281 | end = start + context | |
282 | lines = ulinecache.getlines(file)[start:end] |
|
282 | lines = ulinecache.getlines(file)[start:end] | |
283 | buf = list(records[i]) |
|
283 | buf = list(records[i]) | |
284 | buf[LNUM_POS] = lnum |
|
284 | buf[LNUM_POS] = lnum | |
285 | buf[INDEX_POS] = lnum - 1 - start |
|
285 | buf[INDEX_POS] = lnum - 1 - start | |
286 | buf[LINES_POS] = lines |
|
286 | buf[LINES_POS] = lines | |
287 | records[i] = tuple(buf) |
|
287 | records[i] = tuple(buf) | |
288 | return records[tb_offset:] |
|
288 | return records[tb_offset:] | |
289 |
|
289 | |||
290 | # Helper function -- largely belongs to VerboseTB, but we need the same |
|
290 | # Helper function -- largely belongs to VerboseTB, but we need the same | |
291 | # functionality to produce a pseudo verbose TB for SyntaxErrors, so that they |
|
291 | # functionality to produce a pseudo verbose TB for SyntaxErrors, so that they | |
292 | # can be recognized properly by ipython.el's py-traceback-line-re |
|
292 | # can be recognized properly by ipython.el's py-traceback-line-re | |
293 | # (SyntaxErrors have to be treated specially because they have no traceback) |
|
293 | # (SyntaxErrors have to be treated specially because they have no traceback) | |
294 |
|
294 | |||
295 | _parser = PyColorize.Parser() |
|
295 | _parser = PyColorize.Parser() | |
296 |
|
296 | |||
297 |
|
297 | |||
298 | def _format_traceback_lines(lnum, index, lines, Colors, lvals=None, scheme=None): |
|
298 | def _format_traceback_lines(lnum, index, lines, Colors, lvals=None, scheme=None): | |
299 | numbers_width = INDENT_SIZE - 1 |
|
299 | numbers_width = INDENT_SIZE - 1 | |
300 | res = [] |
|
300 | res = [] | |
301 | i = lnum - index |
|
301 | i = lnum - index | |
302 |
|
302 | |||
303 | # This lets us get fully syntax-highlighted tracebacks. |
|
303 | # This lets us get fully syntax-highlighted tracebacks. | |
304 | if scheme is None: |
|
304 | if scheme is None: | |
305 | ipinst = get_ipython() |
|
305 | ipinst = get_ipython() | |
306 | if ipinst is not None: |
|
306 | if ipinst is not None: | |
307 | scheme = ipinst.colors |
|
307 | scheme = ipinst.colors | |
308 | else: |
|
308 | else: | |
309 | scheme = DEFAULT_SCHEME |
|
309 | scheme = DEFAULT_SCHEME | |
310 |
|
310 | |||
311 | _line_format = _parser.format2 |
|
311 | _line_format = _parser.format2 | |
312 |
|
312 | |||
313 | for line in lines: |
|
313 | for line in lines: | |
314 | line = py3compat.cast_unicode(line) |
|
314 | line = py3compat.cast_unicode(line) | |
315 |
|
315 | |||
316 | new_line, err = _line_format(line, 'str', scheme) |
|
316 | new_line, err = _line_format(line, 'str', scheme) | |
317 | if not err: line = new_line |
|
317 | if not err: line = new_line | |
318 |
|
318 | |||
319 | if i == lnum: |
|
319 | if i == lnum: | |
320 | # This is the line with the error |
|
320 | # This is the line with the error | |
321 | pad = numbers_width - len(str(i)) |
|
321 | pad = numbers_width - len(str(i)) | |
322 | if pad >= 3: |
|
322 | if pad >= 3: | |
323 | marker = '-' * (pad - 3) + '-> ' |
|
323 | marker = '-' * (pad - 3) + '-> ' | |
324 | elif pad == 2: |
|
324 | elif pad == 2: | |
325 | marker = '> ' |
|
325 | marker = '> ' | |
326 | elif pad == 1: |
|
326 | elif pad == 1: | |
327 | marker = '>' |
|
327 | marker = '>' | |
328 | else: |
|
328 | else: | |
329 | marker = '' |
|
329 | marker = '' | |
330 | num = marker + str(i) |
|
330 | num = marker + str(i) | |
331 | line = '%s%s%s %s%s' % (Colors.linenoEm, num, |
|
331 | line = '%s%s%s %s%s' % (Colors.linenoEm, num, | |
332 | Colors.line, line, Colors.Normal) |
|
332 | Colors.line, line, Colors.Normal) | |
333 | else: |
|
333 | else: | |
334 | num = '%*s' % (numbers_width, i) |
|
334 | num = '%*s' % (numbers_width, i) | |
335 | line = '%s%s%s %s' % (Colors.lineno, num, |
|
335 | line = '%s%s%s %s' % (Colors.lineno, num, | |
336 | Colors.Normal, line) |
|
336 | Colors.Normal, line) | |
337 |
|
337 | |||
338 | res.append(line) |
|
338 | res.append(line) | |
339 | if lvals and i == lnum: |
|
339 | if lvals and i == lnum: | |
340 | res.append(lvals + '\n') |
|
340 | res.append(lvals + '\n') | |
341 | i = i + 1 |
|
341 | i = i + 1 | |
342 | return res |
|
342 | return res | |
343 |
|
343 | |||
344 |
|
344 | |||
345 | #--------------------------------------------------------------------------- |
|
345 | #--------------------------------------------------------------------------- | |
346 | # Module classes |
|
346 | # Module classes | |
347 | class TBTools(object): |
|
347 | class TBTools(object): | |
348 | """Basic tools used by all traceback printer classes.""" |
|
348 | """Basic tools used by all traceback printer classes.""" | |
349 |
|
349 | |||
350 | # Number of frames to skip when reporting tracebacks |
|
350 | # Number of frames to skip when reporting tracebacks | |
351 | tb_offset = 0 |
|
351 | tb_offset = 0 | |
352 |
|
352 | |||
353 | def __init__(self, color_scheme='NoColor', call_pdb=False, ostream=None): |
|
353 | def __init__(self, color_scheme='NoColor', call_pdb=False, ostream=None): | |
354 | # Whether to call the interactive pdb debugger after printing |
|
354 | # Whether to call the interactive pdb debugger after printing | |
355 | # tracebacks or not |
|
355 | # tracebacks or not | |
356 | self.call_pdb = call_pdb |
|
356 | self.call_pdb = call_pdb | |
357 |
|
357 | |||
358 | # Output stream to write to. Note that we store the original value in |
|
358 | # Output stream to write to. Note that we store the original value in | |
359 | # a private attribute and then make the public ostream a property, so |
|
359 | # a private attribute and then make the public ostream a property, so | |
360 | # that we can delay accessing io.stdout until runtime. The way |
|
360 | # that we can delay accessing io.stdout until runtime. The way | |
361 | # things are written now, the io.stdout object is dynamically managed |
|
361 | # things are written now, the io.stdout object is dynamically managed | |
362 | # so a reference to it should NEVER be stored statically. This |
|
362 | # so a reference to it should NEVER be stored statically. This | |
363 | # property approach confines this detail to a single location, and all |
|
363 | # property approach confines this detail to a single location, and all | |
364 | # subclasses can simply access self.ostream for writing. |
|
364 | # subclasses can simply access self.ostream for writing. | |
365 | self._ostream = ostream |
|
365 | self._ostream = ostream | |
366 |
|
366 | |||
367 | # Create color table |
|
367 | # Create color table | |
368 | self.color_scheme_table = exception_colors() |
|
368 | self.color_scheme_table = exception_colors() | |
369 |
|
369 | |||
370 | self.set_colors(color_scheme) |
|
370 | self.set_colors(color_scheme) | |
371 | self.old_scheme = color_scheme # save initial value for toggles |
|
371 | self.old_scheme = color_scheme # save initial value for toggles | |
372 |
|
372 | |||
373 | if call_pdb: |
|
373 | if call_pdb: | |
374 | self.pdb = debugger.Pdb(self.color_scheme_table.active_scheme_name) |
|
374 | self.pdb = debugger.Pdb(self.color_scheme_table.active_scheme_name) | |
375 | else: |
|
375 | else: | |
376 | self.pdb = None |
|
376 | self.pdb = None | |
377 |
|
377 | |||
378 | def _get_ostream(self): |
|
378 | def _get_ostream(self): | |
379 | """Output stream that exceptions are written to. |
|
379 | """Output stream that exceptions are written to. | |
380 |
|
380 | |||
381 | Valid values are: |
|
381 | Valid values are: | |
382 |
|
382 | |||
383 | - None: the default, which means that IPython will dynamically resolve |
|
383 | - None: the default, which means that IPython will dynamically resolve | |
384 | to io.stdout. This ensures compatibility with most tools, including |
|
384 | to io.stdout. This ensures compatibility with most tools, including | |
385 | Windows (where plain stdout doesn't recognize ANSI escapes). |
|
385 | Windows (where plain stdout doesn't recognize ANSI escapes). | |
386 |
|
386 | |||
387 | - Any object with 'write' and 'flush' attributes. |
|
387 | - Any object with 'write' and 'flush' attributes. | |
388 | """ |
|
388 | """ | |
389 | return io.stdout if self._ostream is None else self._ostream |
|
389 | return io.stdout if self._ostream is None else self._ostream | |
390 |
|
390 | |||
391 | def _set_ostream(self, val): |
|
391 | def _set_ostream(self, val): | |
392 | assert val is None or (hasattr(val, 'write') and hasattr(val, 'flush')) |
|
392 | assert val is None or (hasattr(val, 'write') and hasattr(val, 'flush')) | |
393 | self._ostream = val |
|
393 | self._ostream = val | |
394 |
|
394 | |||
395 | ostream = property(_get_ostream, _set_ostream) |
|
395 | ostream = property(_get_ostream, _set_ostream) | |
396 |
|
396 | |||
397 | def set_colors(self, *args, **kw): |
|
397 | def set_colors(self, *args, **kw): | |
398 | """Shorthand access to the color table scheme selector method.""" |
|
398 | """Shorthand access to the color table scheme selector method.""" | |
399 |
|
399 | |||
400 | # Set own color table |
|
400 | # Set own color table | |
401 | self.color_scheme_table.set_active_scheme(*args, **kw) |
|
401 | self.color_scheme_table.set_active_scheme(*args, **kw) | |
402 | # for convenience, set Colors to the active scheme |
|
402 | # for convenience, set Colors to the active scheme | |
403 | self.Colors = self.color_scheme_table.active_colors |
|
403 | self.Colors = self.color_scheme_table.active_colors | |
404 | # Also set colors of debugger |
|
404 | # Also set colors of debugger | |
405 | if hasattr(self, 'pdb') and self.pdb is not None: |
|
405 | if hasattr(self, 'pdb') and self.pdb is not None: | |
406 | self.pdb.set_colors(*args, **kw) |
|
406 | self.pdb.set_colors(*args, **kw) | |
407 |
|
407 | |||
408 | def color_toggle(self): |
|
408 | def color_toggle(self): | |
409 | """Toggle between the currently active color scheme and NoColor.""" |
|
409 | """Toggle between the currently active color scheme and NoColor.""" | |
410 |
|
410 | |||
411 | if self.color_scheme_table.active_scheme_name == 'NoColor': |
|
411 | if self.color_scheme_table.active_scheme_name == 'NoColor': | |
412 | self.color_scheme_table.set_active_scheme(self.old_scheme) |
|
412 | self.color_scheme_table.set_active_scheme(self.old_scheme) | |
413 | self.Colors = self.color_scheme_table.active_colors |
|
413 | self.Colors = self.color_scheme_table.active_colors | |
414 | else: |
|
414 | else: | |
415 | self.old_scheme = self.color_scheme_table.active_scheme_name |
|
415 | self.old_scheme = self.color_scheme_table.active_scheme_name | |
416 | self.color_scheme_table.set_active_scheme('NoColor') |
|
416 | self.color_scheme_table.set_active_scheme('NoColor') | |
417 | self.Colors = self.color_scheme_table.active_colors |
|
417 | self.Colors = self.color_scheme_table.active_colors | |
418 |
|
418 | |||
419 | def stb2text(self, stb): |
|
419 | def stb2text(self, stb): | |
420 | """Convert a structured traceback (a list) to a string.""" |
|
420 | """Convert a structured traceback (a list) to a string.""" | |
421 | return '\n'.join(stb) |
|
421 | return '\n'.join(stb) | |
422 |
|
422 | |||
423 | def text(self, etype, value, tb, tb_offset=None, context=5): |
|
423 | def text(self, etype, value, tb, tb_offset=None, context=5): | |
424 | """Return formatted traceback. |
|
424 | """Return formatted traceback. | |
425 |
|
425 | |||
426 | Subclasses may override this if they add extra arguments. |
|
426 | Subclasses may override this if they add extra arguments. | |
427 | """ |
|
427 | """ | |
428 | tb_list = self.structured_traceback(etype, value, tb, |
|
428 | tb_list = self.structured_traceback(etype, value, tb, | |
429 | tb_offset, context) |
|
429 | tb_offset, context) | |
430 | return self.stb2text(tb_list) |
|
430 | return self.stb2text(tb_list) | |
431 |
|
431 | |||
432 | def structured_traceback(self, etype, evalue, tb, tb_offset=None, |
|
432 | def structured_traceback(self, etype, evalue, tb, tb_offset=None, | |
433 | context=5, mode=None): |
|
433 | context=5, mode=None): | |
434 | """Return a list of traceback frames. |
|
434 | """Return a list of traceback frames. | |
435 |
|
435 | |||
436 | Must be implemented by each class. |
|
436 | Must be implemented by each class. | |
437 | """ |
|
437 | """ | |
438 | raise NotImplementedError() |
|
438 | raise NotImplementedError() | |
439 |
|
439 | |||
440 |
|
440 | |||
441 | #--------------------------------------------------------------------------- |
|
441 | #--------------------------------------------------------------------------- | |
442 | class ListTB(TBTools): |
|
442 | class ListTB(TBTools): | |
443 | """Print traceback information from a traceback list, with optional color. |
|
443 | """Print traceback information from a traceback list, with optional color. | |
444 |
|
444 | |||
445 | Calling requires 3 arguments: (etype, evalue, elist) |
|
445 | Calling requires 3 arguments: (etype, evalue, elist) | |
446 | as would be obtained by:: |
|
446 | as would be obtained by:: | |
447 |
|
447 | |||
448 | etype, evalue, tb = sys.exc_info() |
|
448 | etype, evalue, tb = sys.exc_info() | |
449 | if tb: |
|
449 | if tb: | |
450 | elist = traceback.extract_tb(tb) |
|
450 | elist = traceback.extract_tb(tb) | |
451 | else: |
|
451 | else: | |
452 | elist = None |
|
452 | elist = None | |
453 |
|
453 | |||
454 | It can thus be used by programs which need to process the traceback before |
|
454 | It can thus be used by programs which need to process the traceback before | |
455 | printing (such as console replacements based on the code module from the |
|
455 | printing (such as console replacements based on the code module from the | |
456 | standard library). |
|
456 | standard library). | |
457 |
|
457 | |||
458 | Because they are meant to be called without a full traceback (only a |
|
458 | Because they are meant to be called without a full traceback (only a | |
459 | list), instances of this class can't call the interactive pdb debugger.""" |
|
459 | list), instances of this class can't call the interactive pdb debugger.""" | |
460 |
|
460 | |||
461 | def __init__(self, color_scheme='NoColor', call_pdb=False, ostream=None): |
|
461 | def __init__(self, color_scheme='NoColor', call_pdb=False, ostream=None): | |
462 | TBTools.__init__(self, color_scheme=color_scheme, call_pdb=call_pdb, |
|
462 | TBTools.__init__(self, color_scheme=color_scheme, call_pdb=call_pdb, | |
463 | ostream=ostream) |
|
463 | ostream=ostream) | |
464 |
|
464 | |||
465 | def __call__(self, etype, value, elist): |
|
465 | def __call__(self, etype, value, elist): | |
466 | self.ostream.flush() |
|
466 | self.ostream.flush() | |
467 | self.ostream.write(self.text(etype, value, elist)) |
|
467 | self.ostream.write(self.text(etype, value, elist)) | |
468 | self.ostream.write('\n') |
|
468 | self.ostream.write('\n') | |
469 |
|
469 | |||
470 | def structured_traceback(self, etype, value, elist, tb_offset=None, |
|
470 | def structured_traceback(self, etype, value, elist, tb_offset=None, | |
471 | context=5): |
|
471 | context=5): | |
472 | """Return a color formatted string with the traceback info. |
|
472 | """Return a color formatted string with the traceback info. | |
473 |
|
473 | |||
474 | Parameters |
|
474 | Parameters | |
475 | ---------- |
|
475 | ---------- | |
476 | etype : exception type |
|
476 | etype : exception type | |
477 | Type of the exception raised. |
|
477 | Type of the exception raised. | |
478 |
|
478 | |||
479 | value : object |
|
479 | value : object | |
480 | Data stored in the exception |
|
480 | Data stored in the exception | |
481 |
|
481 | |||
482 | elist : list |
|
482 | elist : list | |
483 | List of frames, see class docstring for details. |
|
483 | List of frames, see class docstring for details. | |
484 |
|
484 | |||
485 | tb_offset : int, optional |
|
485 | tb_offset : int, optional | |
486 | Number of frames in the traceback to skip. If not given, the |
|
486 | Number of frames in the traceback to skip. If not given, the | |
487 | instance value is used (set in constructor). |
|
487 | instance value is used (set in constructor). | |
488 |
|
488 | |||
489 | context : int, optional |
|
489 | context : int, optional | |
490 | Number of lines of context information to print. |
|
490 | Number of lines of context information to print. | |
491 |
|
491 | |||
492 | Returns |
|
492 | Returns | |
493 | ------- |
|
493 | ------- | |
494 | String with formatted exception. |
|
494 | String with formatted exception. | |
495 | """ |
|
495 | """ | |
496 | tb_offset = self.tb_offset if tb_offset is None else tb_offset |
|
496 | tb_offset = self.tb_offset if tb_offset is None else tb_offset | |
497 | Colors = self.Colors |
|
497 | Colors = self.Colors | |
498 | out_list = [] |
|
498 | out_list = [] | |
499 | if elist: |
|
499 | if elist: | |
500 |
|
500 | |||
501 | if tb_offset and len(elist) > tb_offset: |
|
501 | if tb_offset and len(elist) > tb_offset: | |
502 | elist = elist[tb_offset:] |
|
502 | elist = elist[tb_offset:] | |
503 |
|
503 | |||
504 | out_list.append('Traceback %s(most recent call last)%s:' % |
|
504 | out_list.append('Traceback %s(most recent call last)%s:' % | |
505 | (Colors.normalEm, Colors.Normal) + '\n') |
|
505 | (Colors.normalEm, Colors.Normal) + '\n') | |
506 | out_list.extend(self._format_list(elist)) |
|
506 | out_list.extend(self._format_list(elist)) | |
507 | # The exception info should be a single entry in the list. |
|
507 | # The exception info should be a single entry in the list. | |
508 | lines = ''.join(self._format_exception_only(etype, value)) |
|
508 | lines = ''.join(self._format_exception_only(etype, value)) | |
509 | out_list.append(lines) |
|
509 | out_list.append(lines) | |
510 |
|
510 | |||
511 | # Note: this code originally read: |
|
511 | # Note: this code originally read: | |
512 |
|
512 | |||
513 | ## for line in lines[:-1]: |
|
513 | ## for line in lines[:-1]: | |
514 | ## out_list.append(" "+line) |
|
514 | ## out_list.append(" "+line) | |
515 | ## out_list.append(lines[-1]) |
|
515 | ## out_list.append(lines[-1]) | |
516 |
|
516 | |||
517 | # This means it was indenting everything but the last line by a little |
|
517 | # This means it was indenting everything but the last line by a little | |
518 | # bit. I've disabled this for now, but if we see ugliness somewhere we |
|
518 | # bit. I've disabled this for now, but if we see ugliness somewhere we | |
519 | # can restore it. |
|
519 | # can restore it. | |
520 |
|
520 | |||
521 | return out_list |
|
521 | return out_list | |
522 |
|
522 | |||
523 | def _format_list(self, extracted_list): |
|
523 | def _format_list(self, extracted_list): | |
524 | """Format a list of traceback entry tuples for printing. |
|
524 | """Format a list of traceback entry tuples for printing. | |
525 |
|
525 | |||
526 | Given a list of tuples as returned by extract_tb() or |
|
526 | Given a list of tuples as returned by extract_tb() or | |
527 | extract_stack(), return a list of strings ready for printing. |
|
527 | extract_stack(), return a list of strings ready for printing. | |
528 | Each string in the resulting list corresponds to the item with the |
|
528 | Each string in the resulting list corresponds to the item with the | |
529 | same index in the argument list. Each string ends in a newline; |
|
529 | same index in the argument list. Each string ends in a newline; | |
530 | the strings may contain internal newlines as well, for those items |
|
530 | the strings may contain internal newlines as well, for those items | |
531 | whose source text line is not None. |
|
531 | whose source text line is not None. | |
532 |
|
532 | |||
533 | Lifted almost verbatim from traceback.py |
|
533 | Lifted almost verbatim from traceback.py | |
534 | """ |
|
534 | """ | |
535 |
|
535 | |||
536 | Colors = self.Colors |
|
536 | Colors = self.Colors | |
537 | list = [] |
|
537 | list = [] | |
538 | for filename, lineno, name, line in extracted_list[:-1]: |
|
538 | for filename, lineno, name, line in extracted_list[:-1]: | |
539 | item = ' File %s"%s"%s, line %s%d%s, in %s%s%s\n' % \ |
|
539 | item = ' File %s"%s"%s, line %s%d%s, in %s%s%s\n' % \ | |
540 | (Colors.filename, filename, Colors.Normal, |
|
540 | (Colors.filename, filename, Colors.Normal, | |
541 | Colors.lineno, lineno, Colors.Normal, |
|
541 | Colors.lineno, lineno, Colors.Normal, | |
542 | Colors.name, name, Colors.Normal) |
|
542 | Colors.name, name, Colors.Normal) | |
543 | if line: |
|
543 | if line: | |
544 | item += ' %s\n' % line.strip() |
|
544 | item += ' %s\n' % line.strip() | |
545 | list.append(item) |
|
545 | list.append(item) | |
546 | # Emphasize the last entry |
|
546 | # Emphasize the last entry | |
547 | filename, lineno, name, line = extracted_list[-1] |
|
547 | filename, lineno, name, line = extracted_list[-1] | |
548 | item = '%s File %s"%s"%s, line %s%d%s, in %s%s%s%s\n' % \ |
|
548 | item = '%s File %s"%s"%s, line %s%d%s, in %s%s%s%s\n' % \ | |
549 | (Colors.normalEm, |
|
549 | (Colors.normalEm, | |
550 | Colors.filenameEm, filename, Colors.normalEm, |
|
550 | Colors.filenameEm, filename, Colors.normalEm, | |
551 | Colors.linenoEm, lineno, Colors.normalEm, |
|
551 | Colors.linenoEm, lineno, Colors.normalEm, | |
552 | Colors.nameEm, name, Colors.normalEm, |
|
552 | Colors.nameEm, name, Colors.normalEm, | |
553 | Colors.Normal) |
|
553 | Colors.Normal) | |
554 | if line: |
|
554 | if line: | |
555 | item += '%s %s%s\n' % (Colors.line, line.strip(), |
|
555 | item += '%s %s%s\n' % (Colors.line, line.strip(), | |
556 | Colors.Normal) |
|
556 | Colors.Normal) | |
557 | list.append(item) |
|
557 | list.append(item) | |
558 | return list |
|
558 | return list | |
559 |
|
559 | |||
560 | def _format_exception_only(self, etype, value): |
|
560 | def _format_exception_only(self, etype, value): | |
561 | """Format the exception part of a traceback. |
|
561 | """Format the exception part of a traceback. | |
562 |
|
562 | |||
563 | The arguments are the exception type and value such as given by |
|
563 | The arguments are the exception type and value such as given by | |
564 | sys.exc_info()[:2]. The return value is a list of strings, each ending |
|
564 | sys.exc_info()[:2]. The return value is a list of strings, each ending | |
565 | in a newline. Normally, the list contains a single string; however, |
|
565 | in a newline. Normally, the list contains a single string; however, | |
566 | for SyntaxError exceptions, it contains several lines that (when |
|
566 | for SyntaxError exceptions, it contains several lines that (when | |
567 | printed) display detailed information about where the syntax error |
|
567 | printed) display detailed information about where the syntax error | |
568 | occurred. The message indicating which exception occurred is the |
|
568 | occurred. The message indicating which exception occurred is the | |
569 | always last string in the list. |
|
569 | always last string in the list. | |
570 |
|
570 | |||
571 | Also lifted nearly verbatim from traceback.py |
|
571 | Also lifted nearly verbatim from traceback.py | |
572 | """ |
|
572 | """ | |
573 | have_filedata = False |
|
573 | have_filedata = False | |
574 | Colors = self.Colors |
|
574 | Colors = self.Colors | |
575 | list = [] |
|
575 | list = [] | |
576 | stype = Colors.excName + etype.__name__ + Colors.Normal |
|
576 | stype = Colors.excName + etype.__name__ + Colors.Normal | |
577 | if value is None: |
|
577 | if value is None: | |
578 | # Not sure if this can still happen in Python 2.6 and above |
|
578 | # Not sure if this can still happen in Python 2.6 and above | |
579 | list.append(py3compat.cast_unicode(stype) + '\n') |
|
579 | list.append(py3compat.cast_unicode(stype) + '\n') | |
580 | else: |
|
580 | else: | |
581 | if issubclass(etype, SyntaxError): |
|
581 | if issubclass(etype, SyntaxError): | |
582 | have_filedata = True |
|
582 | have_filedata = True | |
583 | if not value.filename: value.filename = "<string>" |
|
583 | if not value.filename: value.filename = "<string>" | |
584 | if value.lineno: |
|
584 | if value.lineno: | |
585 | lineno = value.lineno |
|
585 | lineno = value.lineno | |
586 | textline = ulinecache.getline(value.filename, value.lineno) |
|
586 | textline = ulinecache.getline(value.filename, value.lineno) | |
587 | else: |
|
587 | else: | |
588 | lineno = 'unknown' |
|
588 | lineno = 'unknown' | |
589 | textline = '' |
|
589 | textline = '' | |
590 | list.append('%s File %s"%s"%s, line %s%s%s\n' % \ |
|
590 | list.append('%s File %s"%s"%s, line %s%s%s\n' % \ | |
591 | (Colors.normalEm, |
|
591 | (Colors.normalEm, | |
592 | Colors.filenameEm, py3compat.cast_unicode(value.filename), Colors.normalEm, |
|
592 | Colors.filenameEm, py3compat.cast_unicode(value.filename), Colors.normalEm, | |
593 | Colors.linenoEm, lineno, Colors.Normal )) |
|
593 | Colors.linenoEm, lineno, Colors.Normal )) | |
594 | if textline == '': |
|
594 | if textline == '': | |
595 | textline = py3compat.cast_unicode(value.text, "utf-8") |
|
595 | textline = py3compat.cast_unicode(value.text, "utf-8") | |
596 |
|
596 | |||
597 | if textline is not None: |
|
597 | if textline is not None: | |
598 | i = 0 |
|
598 | i = 0 | |
599 | while i < len(textline) and textline[i].isspace(): |
|
599 | while i < len(textline) and textline[i].isspace(): | |
600 | i += 1 |
|
600 | i += 1 | |
601 | list.append('%s %s%s\n' % (Colors.line, |
|
601 | list.append('%s %s%s\n' % (Colors.line, | |
602 | textline.strip(), |
|
602 | textline.strip(), | |
603 | Colors.Normal)) |
|
603 | Colors.Normal)) | |
604 | if value.offset is not None: |
|
604 | if value.offset is not None: | |
605 | s = ' ' |
|
605 | s = ' ' | |
606 | for c in textline[i:value.offset - 1]: |
|
606 | for c in textline[i:value.offset - 1]: | |
607 | if c.isspace(): |
|
607 | if c.isspace(): | |
608 | s += c |
|
608 | s += c | |
609 | else: |
|
609 | else: | |
610 | s += ' ' |
|
610 | s += ' ' | |
611 | list.append('%s%s^%s\n' % (Colors.caret, s, |
|
611 | list.append('%s%s^%s\n' % (Colors.caret, s, | |
612 | Colors.Normal)) |
|
612 | Colors.Normal)) | |
613 |
|
613 | |||
614 | try: |
|
614 | try: | |
615 | s = value.msg |
|
615 | s = value.msg | |
616 | except Exception: |
|
616 | except Exception: | |
617 | s = self._some_str(value) |
|
617 | s = self._some_str(value) | |
618 | if s: |
|
618 | if s: | |
619 | list.append('%s%s:%s %s\n' % (str(stype), Colors.excName, |
|
619 | list.append('%s%s:%s %s\n' % (str(stype), Colors.excName, | |
620 | Colors.Normal, s)) |
|
620 | Colors.Normal, s)) | |
621 | else: |
|
621 | else: | |
622 | list.append('%s\n' % str(stype)) |
|
622 | list.append('%s\n' % str(stype)) | |
623 |
|
623 | |||
624 | # sync with user hooks |
|
624 | # sync with user hooks | |
625 | if have_filedata: |
|
625 | if have_filedata: | |
626 | ipinst = get_ipython() |
|
626 | ipinst = get_ipython() | |
627 | if ipinst is not None: |
|
627 | if ipinst is not None: | |
628 | ipinst.hooks.synchronize_with_editor(value.filename, value.lineno, 0) |
|
628 | ipinst.hooks.synchronize_with_editor(value.filename, value.lineno, 0) | |
629 |
|
629 | |||
630 | return list |
|
630 | return list | |
631 |
|
631 | |||
632 | def get_exception_only(self, etype, value): |
|
632 | def get_exception_only(self, etype, value): | |
633 | """Only print the exception type and message, without a traceback. |
|
633 | """Only print the exception type and message, without a traceback. | |
634 |
|
634 | |||
635 | Parameters |
|
635 | Parameters | |
636 | ---------- |
|
636 | ---------- | |
637 | etype : exception type |
|
637 | etype : exception type | |
638 | value : exception value |
|
638 | value : exception value | |
639 | """ |
|
639 | """ | |
640 | return ListTB.structured_traceback(self, etype, value, []) |
|
640 | return ListTB.structured_traceback(self, etype, value, []) | |
641 |
|
641 | |||
642 | def show_exception_only(self, etype, evalue): |
|
642 | def show_exception_only(self, etype, evalue): | |
643 | """Only print the exception type and message, without a traceback. |
|
643 | """Only print the exception type and message, without a traceback. | |
644 |
|
644 | |||
645 | Parameters |
|
645 | Parameters | |
646 | ---------- |
|
646 | ---------- | |
647 | etype : exception type |
|
647 | etype : exception type | |
648 | value : exception value |
|
648 | value : exception value | |
649 | """ |
|
649 | """ | |
650 | # This method needs to use __call__ from *this* class, not the one from |
|
650 | # This method needs to use __call__ from *this* class, not the one from | |
651 | # a subclass whose signature or behavior may be different |
|
651 | # a subclass whose signature or behavior may be different | |
652 | ostream = self.ostream |
|
652 | ostream = self.ostream | |
653 | ostream.flush() |
|
653 | ostream.flush() | |
654 | ostream.write('\n'.join(self.get_exception_only(etype, evalue))) |
|
654 | ostream.write('\n'.join(self.get_exception_only(etype, evalue))) | |
655 | ostream.flush() |
|
655 | ostream.flush() | |
656 |
|
656 | |||
657 | def _some_str(self, value): |
|
657 | def _some_str(self, value): | |
658 | # Lifted from traceback.py |
|
658 | # Lifted from traceback.py | |
659 | try: |
|
659 | try: | |
660 | return str(value) |
|
660 | return str(value) | |
661 | except: |
|
661 | except: | |
662 | return '<unprintable %s object>' % type(value).__name__ |
|
662 | return '<unprintable %s object>' % type(value).__name__ | |
663 |
|
663 | |||
664 |
|
664 | |||
665 | #---------------------------------------------------------------------------- |
|
665 | #---------------------------------------------------------------------------- | |
666 | class VerboseTB(TBTools): |
|
666 | class VerboseTB(TBTools): | |
667 | """A port of Ka-Ping Yee's cgitb.py module that outputs color text instead |
|
667 | """A port of Ka-Ping Yee's cgitb.py module that outputs color text instead | |
668 | of HTML. Requires inspect and pydoc. Crazy, man. |
|
668 | of HTML. Requires inspect and pydoc. Crazy, man. | |
669 |
|
669 | |||
670 | Modified version which optionally strips the topmost entries from the |
|
670 | Modified version which optionally strips the topmost entries from the | |
671 | traceback, to be used with alternate interpreters (because their own code |
|
671 | traceback, to be used with alternate interpreters (because their own code | |
672 | would appear in the traceback).""" |
|
672 | would appear in the traceback).""" | |
673 |
|
673 | |||
674 | def __init__(self, color_scheme='Linux', call_pdb=False, ostream=None, |
|
674 | def __init__(self, color_scheme='Linux', call_pdb=False, ostream=None, | |
675 | tb_offset=0, long_header=False, include_vars=True, |
|
675 | tb_offset=0, long_header=False, include_vars=True, | |
676 | check_cache=None): |
|
676 | check_cache=None): | |
677 | """Specify traceback offset, headers and color scheme. |
|
677 | """Specify traceback offset, headers and color scheme. | |
678 |
|
678 | |||
679 | Define how many frames to drop from the tracebacks. Calling it with |
|
679 | Define how many frames to drop from the tracebacks. Calling it with | |
680 | tb_offset=1 allows use of this handler in interpreters which will have |
|
680 | tb_offset=1 allows use of this handler in interpreters which will have | |
681 | their own code at the top of the traceback (VerboseTB will first |
|
681 | their own code at the top of the traceback (VerboseTB will first | |
682 | remove that frame before printing the traceback info).""" |
|
682 | remove that frame before printing the traceback info).""" | |
683 | TBTools.__init__(self, color_scheme=color_scheme, call_pdb=call_pdb, |
|
683 | TBTools.__init__(self, color_scheme=color_scheme, call_pdb=call_pdb, | |
684 | ostream=ostream) |
|
684 | ostream=ostream) | |
685 | self.tb_offset = tb_offset |
|
685 | self.tb_offset = tb_offset | |
686 | self.long_header = long_header |
|
686 | self.long_header = long_header | |
687 | self.include_vars = include_vars |
|
687 | self.include_vars = include_vars | |
688 | # By default we use linecache.checkcache, but the user can provide a |
|
688 | # By default we use linecache.checkcache, but the user can provide a | |
689 | # different check_cache implementation. This is used by the IPython |
|
689 | # different check_cache implementation. This is used by the IPython | |
690 | # kernel to provide tracebacks for interactive code that is cached, |
|
690 | # kernel to provide tracebacks for interactive code that is cached, | |
691 | # by a compiler instance that flushes the linecache but preserves its |
|
691 | # by a compiler instance that flushes the linecache but preserves its | |
692 | # own code cache. |
|
692 | # own code cache. | |
693 | if check_cache is None: |
|
693 | if check_cache is None: | |
694 | check_cache = linecache.checkcache |
|
694 | check_cache = linecache.checkcache | |
695 | self.check_cache = check_cache |
|
695 | self.check_cache = check_cache | |
696 |
|
696 | |||
697 | def format_records(self, records): |
|
697 | def format_records(self, records): | |
698 | Colors = self.Colors # just a shorthand + quicker name lookup |
|
698 | Colors = self.Colors # just a shorthand + quicker name lookup | |
699 | ColorsNormal = Colors.Normal # used a lot |
|
699 | ColorsNormal = Colors.Normal # used a lot | |
700 | col_scheme = self.color_scheme_table.active_scheme_name |
|
700 | col_scheme = self.color_scheme_table.active_scheme_name | |
701 | indent = ' ' * INDENT_SIZE |
|
701 | indent = ' ' * INDENT_SIZE | |
702 | em_normal = '%s\n%s%s' % (Colors.valEm, indent, ColorsNormal) |
|
702 | em_normal = '%s\n%s%s' % (Colors.valEm, indent, ColorsNormal) | |
703 | undefined = '%sundefined%s' % (Colors.em, ColorsNormal) |
|
703 | undefined = '%sundefined%s' % (Colors.em, ColorsNormal) | |
704 | frames = [] |
|
704 | frames = [] | |
705 | # build some color string templates outside these nested loops |
|
705 | # build some color string templates outside these nested loops | |
706 | tpl_link = '%s%%s%s' % (Colors.filenameEm, ColorsNormal) |
|
706 | tpl_link = '%s%%s%s' % (Colors.filenameEm, ColorsNormal) | |
707 | tpl_call = 'in %s%%s%s%%s%s' % (Colors.vName, Colors.valEm, |
|
707 | tpl_call = 'in %s%%s%s%%s%s' % (Colors.vName, Colors.valEm, | |
708 | ColorsNormal) |
|
708 | ColorsNormal) | |
709 | tpl_call_fail = 'in %s%%s%s(***failed resolving arguments***)%s' % \ |
|
709 | tpl_call_fail = 'in %s%%s%s(***failed resolving arguments***)%s' % \ | |
710 | (Colors.vName, Colors.valEm, ColorsNormal) |
|
710 | (Colors.vName, Colors.valEm, ColorsNormal) | |
711 | tpl_local_var = '%s%%s%s' % (Colors.vName, ColorsNormal) |
|
711 | tpl_local_var = '%s%%s%s' % (Colors.vName, ColorsNormal) | |
712 | tpl_global_var = '%sglobal%s %s%%s%s' % (Colors.em, ColorsNormal, |
|
712 | tpl_global_var = '%sglobal%s %s%%s%s' % (Colors.em, ColorsNormal, | |
713 | Colors.vName, ColorsNormal) |
|
713 | Colors.vName, ColorsNormal) | |
714 | tpl_name_val = '%%s %s= %%s%s' % (Colors.valEm, ColorsNormal) |
|
714 | tpl_name_val = '%%s %s= %%s%s' % (Colors.valEm, ColorsNormal) | |
715 |
|
715 | |||
716 | tpl_line = '%s%%s%s %%s' % (Colors.lineno, ColorsNormal) |
|
716 | tpl_line = '%s%%s%s %%s' % (Colors.lineno, ColorsNormal) | |
717 | tpl_line_em = '%s%%s%s %%s%s' % (Colors.linenoEm, Colors.line, |
|
717 | tpl_line_em = '%s%%s%s %%s%s' % (Colors.linenoEm, Colors.line, | |
718 | ColorsNormal) |
|
718 | ColorsNormal) | |
719 |
|
719 | |||
720 | abspath = os.path.abspath |
|
720 | abspath = os.path.abspath | |
721 | for frame, file, lnum, func, lines, index in records: |
|
721 | for frame, file, lnum, func, lines, index in records: | |
722 | #print '*** record:',file,lnum,func,lines,index # dbg |
|
722 | #print '*** record:',file,lnum,func,lines,index # dbg | |
723 | if not file: |
|
723 | if not file: | |
724 | file = '?' |
|
724 | file = '?' | |
725 | elif not (file.startswith(str("<")) and file.endswith(str(">"))): |
|
725 | elif not (file.startswith(str("<")) and file.endswith(str(">"))): | |
726 | # Guess that filenames like <string> aren't real filenames, so |
|
726 | # Guess that filenames like <string> aren't real filenames, so | |
727 | # don't call abspath on them. |
|
727 | # don't call abspath on them. | |
728 | try: |
|
728 | try: | |
729 | file = abspath(file) |
|
729 | file = abspath(file) | |
730 | except OSError: |
|
730 | except OSError: | |
731 | # Not sure if this can still happen: abspath now works with |
|
731 | # Not sure if this can still happen: abspath now works with | |
732 | # file names like <string> |
|
732 | # file names like <string> | |
733 | pass |
|
733 | pass | |
734 | file = py3compat.cast_unicode(file, util_path.fs_encoding) |
|
734 | file = py3compat.cast_unicode(file, util_path.fs_encoding) | |
735 | link = tpl_link % file |
|
735 | link = tpl_link % file | |
736 | args, varargs, varkw, locals = inspect.getargvalues(frame) |
|
736 | args, varargs, varkw, locals = inspect.getargvalues(frame) | |
737 |
|
737 | |||
738 | if func == '?': |
|
738 | if func == '?': | |
739 | call = '' |
|
739 | call = '' | |
740 | else: |
|
740 | else: | |
741 | # Decide whether to include variable details or not |
|
741 | # Decide whether to include variable details or not | |
742 | var_repr = self.include_vars and eqrepr or nullrepr |
|
742 | var_repr = self.include_vars and eqrepr or nullrepr | |
743 | try: |
|
743 | try: | |
744 | call = tpl_call % (func, inspect.formatargvalues(args, |
|
744 | call = tpl_call % (func, inspect.formatargvalues(args, | |
745 | varargs, varkw, |
|
745 | varargs, varkw, | |
746 | locals, formatvalue=var_repr)) |
|
746 | locals, formatvalue=var_repr)) | |
747 | except KeyError: |
|
747 | except KeyError: | |
748 | # This happens in situations like errors inside generator |
|
748 | # This happens in situations like errors inside generator | |
749 | # expressions, where local variables are listed in the |
|
749 | # expressions, where local variables are listed in the | |
750 | # line, but can't be extracted from the frame. I'm not |
|
750 | # line, but can't be extracted from the frame. I'm not | |
751 | # 100% sure this isn't actually a bug in inspect itself, |
|
751 | # 100% sure this isn't actually a bug in inspect itself, | |
752 | # but since there's no info for us to compute with, the |
|
752 | # but since there's no info for us to compute with, the | |
753 | # best we can do is report the failure and move on. Here |
|
753 | # best we can do is report the failure and move on. Here | |
754 | # we must *not* call any traceback construction again, |
|
754 | # we must *not* call any traceback construction again, | |
755 | # because that would mess up use of %debug later on. So we |
|
755 | # because that would mess up use of %debug later on. So we | |
756 | # simply report the failure and move on. The only |
|
756 | # simply report the failure and move on. The only | |
757 | # limitation will be that this frame won't have locals |
|
757 | # limitation will be that this frame won't have locals | |
758 | # listed in the call signature. Quite subtle problem... |
|
758 | # listed in the call signature. Quite subtle problem... | |
759 | # I can't think of a good way to validate this in a unit |
|
759 | # I can't think of a good way to validate this in a unit | |
760 | # test, but running a script consisting of: |
|
760 | # test, but running a script consisting of: | |
761 | # dict( (k,v.strip()) for (k,v) in range(10) ) |
|
761 | # dict( (k,v.strip()) for (k,v) in range(10) ) | |
762 | # will illustrate the error, if this exception catch is |
|
762 | # will illustrate the error, if this exception catch is | |
763 | # disabled. |
|
763 | # disabled. | |
764 | call = tpl_call_fail % func |
|
764 | call = tpl_call_fail % func | |
765 |
|
765 | |||
766 | # Don't attempt to tokenize binary files. |
|
766 | # Don't attempt to tokenize binary files. | |
767 | if file.endswith(('.so', '.pyd', '.dll')): |
|
767 | if file.endswith(('.so', '.pyd', '.dll')): | |
768 | frames.append('%s %s\n' % (link, call)) |
|
768 | frames.append('%s %s\n' % (link, call)) | |
769 | continue |
|
769 | continue | |
770 | elif file.endswith(('.pyc', '.pyo')): |
|
770 | elif file.endswith(('.pyc', '.pyo')): | |
771 | # Look up the corresponding source file. |
|
771 | # Look up the corresponding source file. | |
772 | file = openpy.source_from_cache(file) |
|
772 | file = openpy.source_from_cache(file) | |
773 |
|
773 | |||
774 | def linereader(file=file, lnum=[lnum], getline=ulinecache.getline): |
|
774 | def linereader(file=file, lnum=[lnum], getline=ulinecache.getline): | |
775 | line = getline(file, lnum[0]) |
|
775 | line = getline(file, lnum[0]) | |
776 | lnum[0] += 1 |
|
776 | lnum[0] += 1 | |
777 | return line |
|
777 | return line | |
778 |
|
778 | |||
779 | # Build the list of names on this line of code where the exception |
|
779 | # Build the list of names on this line of code where the exception | |
780 | # occurred. |
|
780 | # occurred. | |
781 | try: |
|
781 | try: | |
782 | names = [] |
|
782 | names = [] | |
783 | name_cont = False |
|
783 | name_cont = False | |
784 |
|
784 | |||
785 | for token_type, token, start, end, line in generate_tokens(linereader): |
|
785 | for token_type, token, start, end, line in generate_tokens(linereader): | |
786 | # build composite names |
|
786 | # build composite names | |
787 | if token_type == tokenize.NAME and token not in keyword.kwlist: |
|
787 | if token_type == tokenize.NAME and token not in keyword.kwlist: | |
788 | if name_cont: |
|
788 | if name_cont: | |
789 | # Continuation of a dotted name |
|
789 | # Continuation of a dotted name | |
790 | try: |
|
790 | try: | |
791 | names[-1].append(token) |
|
791 | names[-1].append(token) | |
792 | except IndexError: |
|
792 | except IndexError: | |
793 | names.append([token]) |
|
793 | names.append([token]) | |
794 | name_cont = False |
|
794 | name_cont = False | |
795 | else: |
|
795 | else: | |
796 | # Regular new names. We append everything, the caller |
|
796 | # Regular new names. We append everything, the caller | |
797 | # will be responsible for pruning the list later. It's |
|
797 | # will be responsible for pruning the list later. It's | |
798 | # very tricky to try to prune as we go, b/c composite |
|
798 | # very tricky to try to prune as we go, b/c composite | |
799 | # names can fool us. The pruning at the end is easy |
|
799 | # names can fool us. The pruning at the end is easy | |
800 | # to do (or the caller can print a list with repeated |
|
800 | # to do (or the caller can print a list with repeated | |
801 | # names if so desired. |
|
801 | # names if so desired. | |
802 | names.append([token]) |
|
802 | names.append([token]) | |
803 | elif token == '.': |
|
803 | elif token == '.': | |
804 | name_cont = True |
|
804 | name_cont = True | |
805 | elif token_type == tokenize.NEWLINE: |
|
805 | elif token_type == tokenize.NEWLINE: | |
806 | break |
|
806 | break | |
807 |
|
807 | |||
808 | except (IndexError, UnicodeDecodeError): |
|
808 | except (IndexError, UnicodeDecodeError, SyntaxError): | |
809 | # signals exit of tokenizer |
|
809 | # signals exit of tokenizer | |
|
810 | # SyntaxError can occur if the file is not actually Python | |||
|
811 | # - see gh-6300 | |||
810 | pass |
|
812 | pass | |
811 | except tokenize.TokenError as msg: |
|
813 | except tokenize.TokenError as msg: | |
812 | _m = ("An unexpected error occurred while tokenizing input\n" |
|
814 | _m = ("An unexpected error occurred while tokenizing input\n" | |
813 | "The following traceback may be corrupted or invalid\n" |
|
815 | "The following traceback may be corrupted or invalid\n" | |
814 | "The error message is: %s\n" % msg) |
|
816 | "The error message is: %s\n" % msg) | |
815 | error(_m) |
|
817 | error(_m) | |
816 |
|
818 | |||
817 | # Join composite names (e.g. "dict.fromkeys") |
|
819 | # Join composite names (e.g. "dict.fromkeys") | |
818 | names = ['.'.join(n) for n in names] |
|
820 | names = ['.'.join(n) for n in names] | |
819 | # prune names list of duplicates, but keep the right order |
|
821 | # prune names list of duplicates, but keep the right order | |
820 | unique_names = uniq_stable(names) |
|
822 | unique_names = uniq_stable(names) | |
821 |
|
823 | |||
822 | # Start loop over vars |
|
824 | # Start loop over vars | |
823 | lvals = [] |
|
825 | lvals = [] | |
824 | if self.include_vars: |
|
826 | if self.include_vars: | |
825 | for name_full in unique_names: |
|
827 | for name_full in unique_names: | |
826 | name_base = name_full.split('.', 1)[0] |
|
828 | name_base = name_full.split('.', 1)[0] | |
827 | if name_base in frame.f_code.co_varnames: |
|
829 | if name_base in frame.f_code.co_varnames: | |
828 | if name_base in locals: |
|
830 | if name_base in locals: | |
829 | try: |
|
831 | try: | |
830 | value = repr(eval(name_full, locals)) |
|
832 | value = repr(eval(name_full, locals)) | |
831 | except: |
|
833 | except: | |
832 | value = undefined |
|
834 | value = undefined | |
833 | else: |
|
835 | else: | |
834 | value = undefined |
|
836 | value = undefined | |
835 | name = tpl_local_var % name_full |
|
837 | name = tpl_local_var % name_full | |
836 | else: |
|
838 | else: | |
837 | if name_base in frame.f_globals: |
|
839 | if name_base in frame.f_globals: | |
838 | try: |
|
840 | try: | |
839 | value = repr(eval(name_full, frame.f_globals)) |
|
841 | value = repr(eval(name_full, frame.f_globals)) | |
840 | except: |
|
842 | except: | |
841 | value = undefined |
|
843 | value = undefined | |
842 | else: |
|
844 | else: | |
843 | value = undefined |
|
845 | value = undefined | |
844 | name = tpl_global_var % name_full |
|
846 | name = tpl_global_var % name_full | |
845 | lvals.append(tpl_name_val % (name, value)) |
|
847 | lvals.append(tpl_name_val % (name, value)) | |
846 | if lvals: |
|
848 | if lvals: | |
847 | lvals = '%s%s' % (indent, em_normal.join(lvals)) |
|
849 | lvals = '%s%s' % (indent, em_normal.join(lvals)) | |
848 | else: |
|
850 | else: | |
849 | lvals = '' |
|
851 | lvals = '' | |
850 |
|
852 | |||
851 | level = '%s %s\n' % (link, call) |
|
853 | level = '%s %s\n' % (link, call) | |
852 |
|
854 | |||
853 | if index is None: |
|
855 | if index is None: | |
854 | frames.append(level) |
|
856 | frames.append(level) | |
855 | else: |
|
857 | else: | |
856 | frames.append('%s%s' % (level, ''.join( |
|
858 | frames.append('%s%s' % (level, ''.join( | |
857 | _format_traceback_lines(lnum, index, lines, Colors, lvals, |
|
859 | _format_traceback_lines(lnum, index, lines, Colors, lvals, | |
858 | col_scheme)))) |
|
860 | col_scheme)))) | |
859 |
|
861 | |||
860 | return frames |
|
862 | return frames | |
861 |
|
863 | |||
862 | def prepare_chained_exception_message(self, cause): |
|
864 | def prepare_chained_exception_message(self, cause): | |
863 | direct_cause = "\nThe above exception was the direct cause of the following exception:\n" |
|
865 | direct_cause = "\nThe above exception was the direct cause of the following exception:\n" | |
864 | exception_during_handling = "\nDuring handling of the above exception, another exception occurred:\n" |
|
866 | exception_during_handling = "\nDuring handling of the above exception, another exception occurred:\n" | |
865 |
|
867 | |||
866 | if cause: |
|
868 | if cause: | |
867 | message = [[direct_cause]] |
|
869 | message = [[direct_cause]] | |
868 | else: |
|
870 | else: | |
869 | message = [[exception_during_handling]] |
|
871 | message = [[exception_during_handling]] | |
870 | return message |
|
872 | return message | |
871 |
|
873 | |||
872 | def prepare_header(self, etype, long_version=False): |
|
874 | def prepare_header(self, etype, long_version=False): | |
873 | colors = self.Colors # just a shorthand + quicker name lookup |
|
875 | colors = self.Colors # just a shorthand + quicker name lookup | |
874 | colorsnormal = colors.Normal # used a lot |
|
876 | colorsnormal = colors.Normal # used a lot | |
875 | exc = '%s%s%s' % (colors.excName, etype, colorsnormal) |
|
877 | exc = '%s%s%s' % (colors.excName, etype, colorsnormal) | |
876 | if long_version: |
|
878 | if long_version: | |
877 | # Header with the exception type, python version, and date |
|
879 | # Header with the exception type, python version, and date | |
878 | pyver = 'Python ' + sys.version.split()[0] + ': ' + sys.executable |
|
880 | pyver = 'Python ' + sys.version.split()[0] + ': ' + sys.executable | |
879 | date = time.ctime(time.time()) |
|
881 | date = time.ctime(time.time()) | |
880 |
|
882 | |||
881 | head = '%s%s%s\n%s%s%s\n%s' % (colors.topline, '-' * 75, colorsnormal, |
|
883 | head = '%s%s%s\n%s%s%s\n%s' % (colors.topline, '-' * 75, colorsnormal, | |
882 | exc, ' ' * (75 - len(str(etype)) - len(pyver)), |
|
884 | exc, ' ' * (75 - len(str(etype)) - len(pyver)), | |
883 | pyver, date.rjust(75) ) |
|
885 | pyver, date.rjust(75) ) | |
884 | head += "\nA problem occurred executing Python code. Here is the sequence of function" \ |
|
886 | head += "\nA problem occurred executing Python code. Here is the sequence of function" \ | |
885 | "\ncalls leading up to the error, with the most recent (innermost) call last." |
|
887 | "\ncalls leading up to the error, with the most recent (innermost) call last." | |
886 | else: |
|
888 | else: | |
887 | # Simplified header |
|
889 | # Simplified header | |
888 | head = '%s%s' % (exc, 'Traceback (most recent call last)'. \ |
|
890 | head = '%s%s' % (exc, 'Traceback (most recent call last)'. \ | |
889 | rjust(75 - len(str(etype))) ) |
|
891 | rjust(75 - len(str(etype))) ) | |
890 |
|
892 | |||
891 | return head |
|
893 | return head | |
892 |
|
894 | |||
893 | def format_exception(self, etype, evalue): |
|
895 | def format_exception(self, etype, evalue): | |
894 | colors = self.Colors # just a shorthand + quicker name lookup |
|
896 | colors = self.Colors # just a shorthand + quicker name lookup | |
895 | colorsnormal = colors.Normal # used a lot |
|
897 | colorsnormal = colors.Normal # used a lot | |
896 | indent = ' ' * INDENT_SIZE |
|
898 | indent = ' ' * INDENT_SIZE | |
897 | # Get (safely) a string form of the exception info |
|
899 | # Get (safely) a string form of the exception info | |
898 | try: |
|
900 | try: | |
899 | etype_str, evalue_str = map(str, (etype, evalue)) |
|
901 | etype_str, evalue_str = map(str, (etype, evalue)) | |
900 | except: |
|
902 | except: | |
901 | # User exception is improperly defined. |
|
903 | # User exception is improperly defined. | |
902 | etype, evalue = str, sys.exc_info()[:2] |
|
904 | etype, evalue = str, sys.exc_info()[:2] | |
903 | etype_str, evalue_str = map(str, (etype, evalue)) |
|
905 | etype_str, evalue_str = map(str, (etype, evalue)) | |
904 | # ... and format it |
|
906 | # ... and format it | |
905 | exception = ['%s%s%s: %s' % (colors.excName, etype_str, |
|
907 | exception = ['%s%s%s: %s' % (colors.excName, etype_str, | |
906 | colorsnormal, py3compat.cast_unicode(evalue_str))] |
|
908 | colorsnormal, py3compat.cast_unicode(evalue_str))] | |
907 |
|
909 | |||
908 | if (not py3compat.PY3) and type(evalue) is types.InstanceType: |
|
910 | if (not py3compat.PY3) and type(evalue) is types.InstanceType: | |
909 | try: |
|
911 | try: | |
910 | names = [w for w in dir(evalue) if isinstance(w, py3compat.string_types)] |
|
912 | names = [w for w in dir(evalue) if isinstance(w, py3compat.string_types)] | |
911 | except: |
|
913 | except: | |
912 | # Every now and then, an object with funny internals blows up |
|
914 | # Every now and then, an object with funny internals blows up | |
913 | # when dir() is called on it. We do the best we can to report |
|
915 | # when dir() is called on it. We do the best we can to report | |
914 | # the problem and continue |
|
916 | # the problem and continue | |
915 | _m = '%sException reporting error (object with broken dir())%s:' |
|
917 | _m = '%sException reporting error (object with broken dir())%s:' | |
916 | exception.append(_m % (colors.excName, colorsnormal)) |
|
918 | exception.append(_m % (colors.excName, colorsnormal)) | |
917 | etype_str, evalue_str = map(str, sys.exc_info()[:2]) |
|
919 | etype_str, evalue_str = map(str, sys.exc_info()[:2]) | |
918 | exception.append('%s%s%s: %s' % (colors.excName, etype_str, |
|
920 | exception.append('%s%s%s: %s' % (colors.excName, etype_str, | |
919 | colorsnormal, py3compat.cast_unicode(evalue_str))) |
|
921 | colorsnormal, py3compat.cast_unicode(evalue_str))) | |
920 | names = [] |
|
922 | names = [] | |
921 | for name in names: |
|
923 | for name in names: | |
922 | value = text_repr(getattr(evalue, name)) |
|
924 | value = text_repr(getattr(evalue, name)) | |
923 | exception.append('\n%s%s = %s' % (indent, name, value)) |
|
925 | exception.append('\n%s%s = %s' % (indent, name, value)) | |
924 |
|
926 | |||
925 | return exception |
|
927 | return exception | |
926 |
|
928 | |||
927 | def format_exception_as_a_whole(self, etype, evalue, etb, number_of_lines_of_context, tb_offset): |
|
929 | def format_exception_as_a_whole(self, etype, evalue, etb, number_of_lines_of_context, tb_offset): | |
928 | # some locals |
|
930 | # some locals | |
929 | try: |
|
931 | try: | |
930 | etype = etype.__name__ |
|
932 | etype = etype.__name__ | |
931 | except AttributeError: |
|
933 | except AttributeError: | |
932 | pass |
|
934 | pass | |
933 |
|
935 | |||
934 | tb_offset = self.tb_offset if tb_offset is None else tb_offset |
|
936 | tb_offset = self.tb_offset if tb_offset is None else tb_offset | |
935 | head = self.prepare_header(etype, self.long_header) |
|
937 | head = self.prepare_header(etype, self.long_header) | |
936 | records = self.get_records(etb, number_of_lines_of_context, tb_offset) |
|
938 | records = self.get_records(etb, number_of_lines_of_context, tb_offset) | |
937 |
|
939 | |||
938 | frames = self.format_records(records) |
|
940 | frames = self.format_records(records) | |
939 | if records is None: |
|
941 | if records is None: | |
940 | return "" |
|
942 | return "" | |
941 |
|
943 | |||
942 | formatted_exception = self.format_exception(etype, evalue) |
|
944 | formatted_exception = self.format_exception(etype, evalue) | |
943 | if records: |
|
945 | if records: | |
944 | filepath, lnum = records[-1][1:3] |
|
946 | filepath, lnum = records[-1][1:3] | |
945 | filepath = os.path.abspath(filepath) |
|
947 | filepath = os.path.abspath(filepath) | |
946 | ipinst = get_ipython() |
|
948 | ipinst = get_ipython() | |
947 | if ipinst is not None: |
|
949 | if ipinst is not None: | |
948 | ipinst.hooks.synchronize_with_editor(filepath, lnum, 0) |
|
950 | ipinst.hooks.synchronize_with_editor(filepath, lnum, 0) | |
949 |
|
951 | |||
950 | return [[head] + frames + [''.join(formatted_exception[0])]] |
|
952 | return [[head] + frames + [''.join(formatted_exception[0])]] | |
951 |
|
953 | |||
952 | def get_records(self, etb, number_of_lines_of_context, tb_offset): |
|
954 | def get_records(self, etb, number_of_lines_of_context, tb_offset): | |
953 | try: |
|
955 | try: | |
954 | # Try the default getinnerframes and Alex's: Alex's fixes some |
|
956 | # Try the default getinnerframes and Alex's: Alex's fixes some | |
955 | # problems, but it generates empty tracebacks for console errors |
|
957 | # problems, but it generates empty tracebacks for console errors | |
956 | # (5 blanks lines) where none should be returned. |
|
958 | # (5 blanks lines) where none should be returned. | |
957 | return _fixed_getinnerframes(etb, number_of_lines_of_context, tb_offset) |
|
959 | return _fixed_getinnerframes(etb, number_of_lines_of_context, tb_offset) | |
958 | except: |
|
960 | except: | |
959 | # FIXME: I've been getting many crash reports from python 2.3 |
|
961 | # FIXME: I've been getting many crash reports from python 2.3 | |
960 | # users, traceable to inspect.py. If I can find a small test-case |
|
962 | # users, traceable to inspect.py. If I can find a small test-case | |
961 | # to reproduce this, I should either write a better workaround or |
|
963 | # to reproduce this, I should either write a better workaround or | |
962 | # file a bug report against inspect (if that's the real problem). |
|
964 | # file a bug report against inspect (if that's the real problem). | |
963 | # So far, I haven't been able to find an isolated example to |
|
965 | # So far, I haven't been able to find an isolated example to | |
964 | # reproduce the problem. |
|
966 | # reproduce the problem. | |
965 | inspect_error() |
|
967 | inspect_error() | |
966 | traceback.print_exc(file=self.ostream) |
|
968 | traceback.print_exc(file=self.ostream) | |
967 | info('\nUnfortunately, your original traceback can not be constructed.\n') |
|
969 | info('\nUnfortunately, your original traceback can not be constructed.\n') | |
968 | return None |
|
970 | return None | |
969 |
|
971 | |||
970 | def get_parts_of_chained_exception(self, evalue): |
|
972 | def get_parts_of_chained_exception(self, evalue): | |
971 | def get_chained_exception(exception_value): |
|
973 | def get_chained_exception(exception_value): | |
972 | cause = getattr(exception_value, '__cause__', None) |
|
974 | cause = getattr(exception_value, '__cause__', None) | |
973 | if cause: |
|
975 | if cause: | |
974 | return cause |
|
976 | return cause | |
975 | return getattr(exception_value, '__context__', None) |
|
977 | return getattr(exception_value, '__context__', None) | |
976 |
|
978 | |||
977 | chained_evalue = get_chained_exception(evalue) |
|
979 | chained_evalue = get_chained_exception(evalue) | |
978 |
|
980 | |||
979 | if chained_evalue: |
|
981 | if chained_evalue: | |
980 | return chained_evalue.__class__, chained_evalue, chained_evalue.__traceback__ |
|
982 | return chained_evalue.__class__, chained_evalue, chained_evalue.__traceback__ | |
981 |
|
983 | |||
982 | def structured_traceback(self, etype, evalue, etb, tb_offset=None, |
|
984 | def structured_traceback(self, etype, evalue, etb, tb_offset=None, | |
983 | number_of_lines_of_context=5): |
|
985 | number_of_lines_of_context=5): | |
984 | """Return a nice text document describing the traceback.""" |
|
986 | """Return a nice text document describing the traceback.""" | |
985 |
|
987 | |||
986 | formatted_exception = self.format_exception_as_a_whole(etype, evalue, etb, number_of_lines_of_context, |
|
988 | formatted_exception = self.format_exception_as_a_whole(etype, evalue, etb, number_of_lines_of_context, | |
987 | tb_offset) |
|
989 | tb_offset) | |
988 |
|
990 | |||
989 | colors = self.Colors # just a shorthand + quicker name lookup |
|
991 | colors = self.Colors # just a shorthand + quicker name lookup | |
990 | colorsnormal = colors.Normal # used a lot |
|
992 | colorsnormal = colors.Normal # used a lot | |
991 | head = '%s%s%s' % (colors.topline, '-' * 75, colorsnormal) |
|
993 | head = '%s%s%s' % (colors.topline, '-' * 75, colorsnormal) | |
992 | structured_traceback_parts = [head] |
|
994 | structured_traceback_parts = [head] | |
993 | if py3compat.PY3: |
|
995 | if py3compat.PY3: | |
994 | chained_exceptions_tb_offset = 0 |
|
996 | chained_exceptions_tb_offset = 0 | |
995 | lines_of_context = 3 |
|
997 | lines_of_context = 3 | |
996 | formatted_exceptions = formatted_exception |
|
998 | formatted_exceptions = formatted_exception | |
997 | exception = self.get_parts_of_chained_exception(evalue) |
|
999 | exception = self.get_parts_of_chained_exception(evalue) | |
998 | if exception: |
|
1000 | if exception: | |
999 | formatted_exceptions += self.prepare_chained_exception_message(evalue.__cause__) |
|
1001 | formatted_exceptions += self.prepare_chained_exception_message(evalue.__cause__) | |
1000 | etype, evalue, etb = exception |
|
1002 | etype, evalue, etb = exception | |
1001 | else: |
|
1003 | else: | |
1002 | evalue = None |
|
1004 | evalue = None | |
1003 | while evalue: |
|
1005 | while evalue: | |
1004 | formatted_exceptions += self.format_exception_as_a_whole(etype, evalue, etb, lines_of_context, |
|
1006 | formatted_exceptions += self.format_exception_as_a_whole(etype, evalue, etb, lines_of_context, | |
1005 | chained_exceptions_tb_offset) |
|
1007 | chained_exceptions_tb_offset) | |
1006 | exception = self.get_parts_of_chained_exception(evalue) |
|
1008 | exception = self.get_parts_of_chained_exception(evalue) | |
1007 |
|
1009 | |||
1008 | if exception: |
|
1010 | if exception: | |
1009 | formatted_exceptions += self.prepare_chained_exception_message(evalue.__cause__) |
|
1011 | formatted_exceptions += self.prepare_chained_exception_message(evalue.__cause__) | |
1010 | etype, evalue, etb = exception |
|
1012 | etype, evalue, etb = exception | |
1011 | else: |
|
1013 | else: | |
1012 | evalue = None |
|
1014 | evalue = None | |
1013 |
|
1015 | |||
1014 | # we want to see exceptions in a reversed order: |
|
1016 | # we want to see exceptions in a reversed order: | |
1015 | # the first exception should be on top |
|
1017 | # the first exception should be on top | |
1016 | for formatted_exception in reversed(formatted_exceptions): |
|
1018 | for formatted_exception in reversed(formatted_exceptions): | |
1017 | structured_traceback_parts += formatted_exception |
|
1019 | structured_traceback_parts += formatted_exception | |
1018 | else: |
|
1020 | else: | |
1019 | structured_traceback_parts += formatted_exception[0] |
|
1021 | structured_traceback_parts += formatted_exception[0] | |
1020 |
|
1022 | |||
1021 | return structured_traceback_parts |
|
1023 | return structured_traceback_parts | |
1022 |
|
1024 | |||
1023 | def debugger(self, force=False): |
|
1025 | def debugger(self, force=False): | |
1024 | """Call up the pdb debugger if desired, always clean up the tb |
|
1026 | """Call up the pdb debugger if desired, always clean up the tb | |
1025 | reference. |
|
1027 | reference. | |
1026 |
|
1028 | |||
1027 | Keywords: |
|
1029 | Keywords: | |
1028 |
|
1030 | |||
1029 | - force(False): by default, this routine checks the instance call_pdb |
|
1031 | - force(False): by default, this routine checks the instance call_pdb | |
1030 | flag and does not actually invoke the debugger if the flag is false. |
|
1032 | flag and does not actually invoke the debugger if the flag is false. | |
1031 | The 'force' option forces the debugger to activate even if the flag |
|
1033 | The 'force' option forces the debugger to activate even if the flag | |
1032 | is false. |
|
1034 | is false. | |
1033 |
|
1035 | |||
1034 | If the call_pdb flag is set, the pdb interactive debugger is |
|
1036 | If the call_pdb flag is set, the pdb interactive debugger is | |
1035 | invoked. In all cases, the self.tb reference to the current traceback |
|
1037 | invoked. In all cases, the self.tb reference to the current traceback | |
1036 | is deleted to prevent lingering references which hamper memory |
|
1038 | is deleted to prevent lingering references which hamper memory | |
1037 | management. |
|
1039 | management. | |
1038 |
|
1040 | |||
1039 | Note that each call to pdb() does an 'import readline', so if your app |
|
1041 | Note that each call to pdb() does an 'import readline', so if your app | |
1040 | requires a special setup for the readline completers, you'll have to |
|
1042 | requires a special setup for the readline completers, you'll have to | |
1041 | fix that by hand after invoking the exception handler.""" |
|
1043 | fix that by hand after invoking the exception handler.""" | |
1042 |
|
1044 | |||
1043 | if force or self.call_pdb: |
|
1045 | if force or self.call_pdb: | |
1044 | if self.pdb is None: |
|
1046 | if self.pdb is None: | |
1045 | self.pdb = debugger.Pdb( |
|
1047 | self.pdb = debugger.Pdb( | |
1046 | self.color_scheme_table.active_scheme_name) |
|
1048 | self.color_scheme_table.active_scheme_name) | |
1047 | # the system displayhook may have changed, restore the original |
|
1049 | # the system displayhook may have changed, restore the original | |
1048 | # for pdb |
|
1050 | # for pdb | |
1049 | display_trap = DisplayTrap(hook=sys.__displayhook__) |
|
1051 | display_trap = DisplayTrap(hook=sys.__displayhook__) | |
1050 | with display_trap: |
|
1052 | with display_trap: | |
1051 | self.pdb.reset() |
|
1053 | self.pdb.reset() | |
1052 | # Find the right frame so we don't pop up inside ipython itself |
|
1054 | # Find the right frame so we don't pop up inside ipython itself | |
1053 | if hasattr(self, 'tb') and self.tb is not None: |
|
1055 | if hasattr(self, 'tb') and self.tb is not None: | |
1054 | etb = self.tb |
|
1056 | etb = self.tb | |
1055 | else: |
|
1057 | else: | |
1056 | etb = self.tb = sys.last_traceback |
|
1058 | etb = self.tb = sys.last_traceback | |
1057 | while self.tb is not None and self.tb.tb_next is not None: |
|
1059 | while self.tb is not None and self.tb.tb_next is not None: | |
1058 | self.tb = self.tb.tb_next |
|
1060 | self.tb = self.tb.tb_next | |
1059 | if etb and etb.tb_next: |
|
1061 | if etb and etb.tb_next: | |
1060 | etb = etb.tb_next |
|
1062 | etb = etb.tb_next | |
1061 | self.pdb.botframe = etb.tb_frame |
|
1063 | self.pdb.botframe = etb.tb_frame | |
1062 | self.pdb.interaction(self.tb.tb_frame, self.tb) |
|
1064 | self.pdb.interaction(self.tb.tb_frame, self.tb) | |
1063 |
|
1065 | |||
1064 | if hasattr(self, 'tb'): |
|
1066 | if hasattr(self, 'tb'): | |
1065 | del self.tb |
|
1067 | del self.tb | |
1066 |
|
1068 | |||
1067 | def handler(self, info=None): |
|
1069 | def handler(self, info=None): | |
1068 | (etype, evalue, etb) = info or sys.exc_info() |
|
1070 | (etype, evalue, etb) = info or sys.exc_info() | |
1069 | self.tb = etb |
|
1071 | self.tb = etb | |
1070 | ostream = self.ostream |
|
1072 | ostream = self.ostream | |
1071 | ostream.flush() |
|
1073 | ostream.flush() | |
1072 | ostream.write(self.text(etype, evalue, etb)) |
|
1074 | ostream.write(self.text(etype, evalue, etb)) | |
1073 | ostream.write('\n') |
|
1075 | ostream.write('\n') | |
1074 | ostream.flush() |
|
1076 | ostream.flush() | |
1075 |
|
1077 | |||
1076 | # Changed so an instance can just be called as VerboseTB_inst() and print |
|
1078 | # Changed so an instance can just be called as VerboseTB_inst() and print | |
1077 | # out the right info on its own. |
|
1079 | # out the right info on its own. | |
1078 | def __call__(self, etype=None, evalue=None, etb=None): |
|
1080 | def __call__(self, etype=None, evalue=None, etb=None): | |
1079 | """This hook can replace sys.excepthook (for Python 2.1 or higher).""" |
|
1081 | """This hook can replace sys.excepthook (for Python 2.1 or higher).""" | |
1080 | if etb is None: |
|
1082 | if etb is None: | |
1081 | self.handler() |
|
1083 | self.handler() | |
1082 | else: |
|
1084 | else: | |
1083 | self.handler((etype, evalue, etb)) |
|
1085 | self.handler((etype, evalue, etb)) | |
1084 | try: |
|
1086 | try: | |
1085 | self.debugger() |
|
1087 | self.debugger() | |
1086 | except KeyboardInterrupt: |
|
1088 | except KeyboardInterrupt: | |
1087 | print("\nKeyboardInterrupt") |
|
1089 | print("\nKeyboardInterrupt") | |
1088 |
|
1090 | |||
1089 |
|
1091 | |||
1090 | #---------------------------------------------------------------------------- |
|
1092 | #---------------------------------------------------------------------------- | |
1091 | class FormattedTB(VerboseTB, ListTB): |
|
1093 | class FormattedTB(VerboseTB, ListTB): | |
1092 | """Subclass ListTB but allow calling with a traceback. |
|
1094 | """Subclass ListTB but allow calling with a traceback. | |
1093 |
|
1095 | |||
1094 | It can thus be used as a sys.excepthook for Python > 2.1. |
|
1096 | It can thus be used as a sys.excepthook for Python > 2.1. | |
1095 |
|
1097 | |||
1096 | Also adds 'Context' and 'Verbose' modes, not available in ListTB. |
|
1098 | Also adds 'Context' and 'Verbose' modes, not available in ListTB. | |
1097 |
|
1099 | |||
1098 | Allows a tb_offset to be specified. This is useful for situations where |
|
1100 | Allows a tb_offset to be specified. This is useful for situations where | |
1099 | one needs to remove a number of topmost frames from the traceback (such as |
|
1101 | one needs to remove a number of topmost frames from the traceback (such as | |
1100 | occurs with python programs that themselves execute other python code, |
|
1102 | occurs with python programs that themselves execute other python code, | |
1101 | like Python shells). """ |
|
1103 | like Python shells). """ | |
1102 |
|
1104 | |||
1103 | def __init__(self, mode='Plain', color_scheme='Linux', call_pdb=False, |
|
1105 | def __init__(self, mode='Plain', color_scheme='Linux', call_pdb=False, | |
1104 | ostream=None, |
|
1106 | ostream=None, | |
1105 | tb_offset=0, long_header=False, include_vars=False, |
|
1107 | tb_offset=0, long_header=False, include_vars=False, | |
1106 | check_cache=None): |
|
1108 | check_cache=None): | |
1107 |
|
1109 | |||
1108 | # NEVER change the order of this list. Put new modes at the end: |
|
1110 | # NEVER change the order of this list. Put new modes at the end: | |
1109 | self.valid_modes = ['Plain', 'Context', 'Verbose'] |
|
1111 | self.valid_modes = ['Plain', 'Context', 'Verbose'] | |
1110 | self.verbose_modes = self.valid_modes[1:3] |
|
1112 | self.verbose_modes = self.valid_modes[1:3] | |
1111 |
|
1113 | |||
1112 | VerboseTB.__init__(self, color_scheme=color_scheme, call_pdb=call_pdb, |
|
1114 | VerboseTB.__init__(self, color_scheme=color_scheme, call_pdb=call_pdb, | |
1113 | ostream=ostream, tb_offset=tb_offset, |
|
1115 | ostream=ostream, tb_offset=tb_offset, | |
1114 | long_header=long_header, include_vars=include_vars, |
|
1116 | long_header=long_header, include_vars=include_vars, | |
1115 | check_cache=check_cache) |
|
1117 | check_cache=check_cache) | |
1116 |
|
1118 | |||
1117 | # Different types of tracebacks are joined with different separators to |
|
1119 | # Different types of tracebacks are joined with different separators to | |
1118 | # form a single string. They are taken from this dict |
|
1120 | # form a single string. They are taken from this dict | |
1119 | self._join_chars = dict(Plain='', Context='\n', Verbose='\n') |
|
1121 | self._join_chars = dict(Plain='', Context='\n', Verbose='\n') | |
1120 | # set_mode also sets the tb_join_char attribute |
|
1122 | # set_mode also sets the tb_join_char attribute | |
1121 | self.set_mode(mode) |
|
1123 | self.set_mode(mode) | |
1122 |
|
1124 | |||
1123 | def _extract_tb(self, tb): |
|
1125 | def _extract_tb(self, tb): | |
1124 | if tb: |
|
1126 | if tb: | |
1125 | return traceback.extract_tb(tb) |
|
1127 | return traceback.extract_tb(tb) | |
1126 | else: |
|
1128 | else: | |
1127 | return None |
|
1129 | return None | |
1128 |
|
1130 | |||
1129 | def structured_traceback(self, etype, value, tb, tb_offset=None, number_of_lines_of_context=5): |
|
1131 | def structured_traceback(self, etype, value, tb, tb_offset=None, number_of_lines_of_context=5): | |
1130 | tb_offset = self.tb_offset if tb_offset is None else tb_offset |
|
1132 | tb_offset = self.tb_offset if tb_offset is None else tb_offset | |
1131 | mode = self.mode |
|
1133 | mode = self.mode | |
1132 | if mode in self.verbose_modes: |
|
1134 | if mode in self.verbose_modes: | |
1133 | # Verbose modes need a full traceback |
|
1135 | # Verbose modes need a full traceback | |
1134 | return VerboseTB.structured_traceback( |
|
1136 | return VerboseTB.structured_traceback( | |
1135 | self, etype, value, tb, tb_offset, number_of_lines_of_context |
|
1137 | self, etype, value, tb, tb_offset, number_of_lines_of_context | |
1136 | ) |
|
1138 | ) | |
1137 | else: |
|
1139 | else: | |
1138 | # We must check the source cache because otherwise we can print |
|
1140 | # We must check the source cache because otherwise we can print | |
1139 | # out-of-date source code. |
|
1141 | # out-of-date source code. | |
1140 | self.check_cache() |
|
1142 | self.check_cache() | |
1141 | # Now we can extract and format the exception |
|
1143 | # Now we can extract and format the exception | |
1142 | elist = self._extract_tb(tb) |
|
1144 | elist = self._extract_tb(tb) | |
1143 | return ListTB.structured_traceback( |
|
1145 | return ListTB.structured_traceback( | |
1144 | self, etype, value, elist, tb_offset, number_of_lines_of_context |
|
1146 | self, etype, value, elist, tb_offset, number_of_lines_of_context | |
1145 | ) |
|
1147 | ) | |
1146 |
|
1148 | |||
1147 | def stb2text(self, stb): |
|
1149 | def stb2text(self, stb): | |
1148 | """Convert a structured traceback (a list) to a string.""" |
|
1150 | """Convert a structured traceback (a list) to a string.""" | |
1149 | return self.tb_join_char.join(stb) |
|
1151 | return self.tb_join_char.join(stb) | |
1150 |
|
1152 | |||
1151 |
|
1153 | |||
1152 | def set_mode(self, mode=None): |
|
1154 | def set_mode(self, mode=None): | |
1153 | """Switch to the desired mode. |
|
1155 | """Switch to the desired mode. | |
1154 |
|
1156 | |||
1155 | If mode is not specified, cycles through the available modes.""" |
|
1157 | If mode is not specified, cycles through the available modes.""" | |
1156 |
|
1158 | |||
1157 | if not mode: |
|
1159 | if not mode: | |
1158 | new_idx = (self.valid_modes.index(self.mode) + 1 ) % \ |
|
1160 | new_idx = (self.valid_modes.index(self.mode) + 1 ) % \ | |
1159 | len(self.valid_modes) |
|
1161 | len(self.valid_modes) | |
1160 | self.mode = self.valid_modes[new_idx] |
|
1162 | self.mode = self.valid_modes[new_idx] | |
1161 | elif mode not in self.valid_modes: |
|
1163 | elif mode not in self.valid_modes: | |
1162 | raise ValueError('Unrecognized mode in FormattedTB: <' + mode + '>\n' |
|
1164 | raise ValueError('Unrecognized mode in FormattedTB: <' + mode + '>\n' | |
1163 | 'Valid modes: ' + str(self.valid_modes)) |
|
1165 | 'Valid modes: ' + str(self.valid_modes)) | |
1164 | else: |
|
1166 | else: | |
1165 | self.mode = mode |
|
1167 | self.mode = mode | |
1166 | # include variable details only in 'Verbose' mode |
|
1168 | # include variable details only in 'Verbose' mode | |
1167 | self.include_vars = (self.mode == self.valid_modes[2]) |
|
1169 | self.include_vars = (self.mode == self.valid_modes[2]) | |
1168 | # Set the join character for generating text tracebacks |
|
1170 | # Set the join character for generating text tracebacks | |
1169 | self.tb_join_char = self._join_chars[self.mode] |
|
1171 | self.tb_join_char = self._join_chars[self.mode] | |
1170 |
|
1172 | |||
1171 | # some convenient shortcuts |
|
1173 | # some convenient shortcuts | |
1172 | def plain(self): |
|
1174 | def plain(self): | |
1173 | self.set_mode(self.valid_modes[0]) |
|
1175 | self.set_mode(self.valid_modes[0]) | |
1174 |
|
1176 | |||
1175 | def context(self): |
|
1177 | def context(self): | |
1176 | self.set_mode(self.valid_modes[1]) |
|
1178 | self.set_mode(self.valid_modes[1]) | |
1177 |
|
1179 | |||
1178 | def verbose(self): |
|
1180 | def verbose(self): | |
1179 | self.set_mode(self.valid_modes[2]) |
|
1181 | self.set_mode(self.valid_modes[2]) | |
1180 |
|
1182 | |||
1181 |
|
1183 | |||
1182 | #---------------------------------------------------------------------------- |
|
1184 | #---------------------------------------------------------------------------- | |
1183 | class AutoFormattedTB(FormattedTB): |
|
1185 | class AutoFormattedTB(FormattedTB): | |
1184 | """A traceback printer which can be called on the fly. |
|
1186 | """A traceback printer which can be called on the fly. | |
1185 |
|
1187 | |||
1186 | It will find out about exceptions by itself. |
|
1188 | It will find out about exceptions by itself. | |
1187 |
|
1189 | |||
1188 | A brief example:: |
|
1190 | A brief example:: | |
1189 |
|
1191 | |||
1190 | AutoTB = AutoFormattedTB(mode = 'Verbose',color_scheme='Linux') |
|
1192 | AutoTB = AutoFormattedTB(mode = 'Verbose',color_scheme='Linux') | |
1191 | try: |
|
1193 | try: | |
1192 | ... |
|
1194 | ... | |
1193 | except: |
|
1195 | except: | |
1194 | AutoTB() # or AutoTB(out=logfile) where logfile is an open file object |
|
1196 | AutoTB() # or AutoTB(out=logfile) where logfile is an open file object | |
1195 | """ |
|
1197 | """ | |
1196 |
|
1198 | |||
1197 | def __call__(self, etype=None, evalue=None, etb=None, |
|
1199 | def __call__(self, etype=None, evalue=None, etb=None, | |
1198 | out=None, tb_offset=None): |
|
1200 | out=None, tb_offset=None): | |
1199 | """Print out a formatted exception traceback. |
|
1201 | """Print out a formatted exception traceback. | |
1200 |
|
1202 | |||
1201 | Optional arguments: |
|
1203 | Optional arguments: | |
1202 | - out: an open file-like object to direct output to. |
|
1204 | - out: an open file-like object to direct output to. | |
1203 |
|
1205 | |||
1204 | - tb_offset: the number of frames to skip over in the stack, on a |
|
1206 | - tb_offset: the number of frames to skip over in the stack, on a | |
1205 | per-call basis (this overrides temporarily the instance's tb_offset |
|
1207 | per-call basis (this overrides temporarily the instance's tb_offset | |
1206 | given at initialization time. """ |
|
1208 | given at initialization time. """ | |
1207 |
|
1209 | |||
1208 | if out is None: |
|
1210 | if out is None: | |
1209 | out = self.ostream |
|
1211 | out = self.ostream | |
1210 | out.flush() |
|
1212 | out.flush() | |
1211 | out.write(self.text(etype, evalue, etb, tb_offset)) |
|
1213 | out.write(self.text(etype, evalue, etb, tb_offset)) | |
1212 | out.write('\n') |
|
1214 | out.write('\n') | |
1213 | out.flush() |
|
1215 | out.flush() | |
1214 | # FIXME: we should remove the auto pdb behavior from here and leave |
|
1216 | # FIXME: we should remove the auto pdb behavior from here and leave | |
1215 | # that to the clients. |
|
1217 | # that to the clients. | |
1216 | try: |
|
1218 | try: | |
1217 | self.debugger() |
|
1219 | self.debugger() | |
1218 | except KeyboardInterrupt: |
|
1220 | except KeyboardInterrupt: | |
1219 | print("\nKeyboardInterrupt") |
|
1221 | print("\nKeyboardInterrupt") | |
1220 |
|
1222 | |||
1221 | def structured_traceback(self, etype=None, value=None, tb=None, |
|
1223 | def structured_traceback(self, etype=None, value=None, tb=None, | |
1222 | tb_offset=None, number_of_lines_of_context=5): |
|
1224 | tb_offset=None, number_of_lines_of_context=5): | |
1223 | if etype is None: |
|
1225 | if etype is None: | |
1224 | etype, value, tb = sys.exc_info() |
|
1226 | etype, value, tb = sys.exc_info() | |
1225 | self.tb = tb |
|
1227 | self.tb = tb | |
1226 | return FormattedTB.structured_traceback( |
|
1228 | return FormattedTB.structured_traceback( | |
1227 | self, etype, value, tb, tb_offset, number_of_lines_of_context) |
|
1229 | self, etype, value, tb, tb_offset, number_of_lines_of_context) | |
1228 |
|
1230 | |||
1229 |
|
1231 | |||
1230 | #--------------------------------------------------------------------------- |
|
1232 | #--------------------------------------------------------------------------- | |
1231 |
|
1233 | |||
1232 | # A simple class to preserve Nathan's original functionality. |
|
1234 | # A simple class to preserve Nathan's original functionality. | |
1233 | class ColorTB(FormattedTB): |
|
1235 | class ColorTB(FormattedTB): | |
1234 | """Shorthand to initialize a FormattedTB in Linux colors mode.""" |
|
1236 | """Shorthand to initialize a FormattedTB in Linux colors mode.""" | |
1235 |
|
1237 | |||
1236 | def __init__(self, color_scheme='Linux', call_pdb=0): |
|
1238 | def __init__(self, color_scheme='Linux', call_pdb=0): | |
1237 | FormattedTB.__init__(self, color_scheme=color_scheme, |
|
1239 | FormattedTB.__init__(self, color_scheme=color_scheme, | |
1238 | call_pdb=call_pdb) |
|
1240 | call_pdb=call_pdb) | |
1239 |
|
1241 | |||
1240 |
|
1242 | |||
1241 | class SyntaxTB(ListTB): |
|
1243 | class SyntaxTB(ListTB): | |
1242 | """Extension which holds some state: the last exception value""" |
|
1244 | """Extension which holds some state: the last exception value""" | |
1243 |
|
1245 | |||
1244 | def __init__(self, color_scheme='NoColor'): |
|
1246 | def __init__(self, color_scheme='NoColor'): | |
1245 | ListTB.__init__(self, color_scheme) |
|
1247 | ListTB.__init__(self, color_scheme) | |
1246 | self.last_syntax_error = None |
|
1248 | self.last_syntax_error = None | |
1247 |
|
1249 | |||
1248 | def __call__(self, etype, value, elist): |
|
1250 | def __call__(self, etype, value, elist): | |
1249 | self.last_syntax_error = value |
|
1251 | self.last_syntax_error = value | |
1250 |
|
1252 | |||
1251 | ListTB.__call__(self, etype, value, elist) |
|
1253 | ListTB.__call__(self, etype, value, elist) | |
1252 |
|
1254 | |||
1253 | def structured_traceback(self, etype, value, elist, tb_offset=None, |
|
1255 | def structured_traceback(self, etype, value, elist, tb_offset=None, | |
1254 | context=5): |
|
1256 | context=5): | |
1255 | # If the source file has been edited, the line in the syntax error can |
|
1257 | # If the source file has been edited, the line in the syntax error can | |
1256 | # be wrong (retrieved from an outdated cache). This replaces it with |
|
1258 | # be wrong (retrieved from an outdated cache). This replaces it with | |
1257 | # the current value. |
|
1259 | # the current value. | |
1258 | if isinstance(value, SyntaxError) \ |
|
1260 | if isinstance(value, SyntaxError) \ | |
1259 | and isinstance(value.filename, py3compat.string_types) \ |
|
1261 | and isinstance(value.filename, py3compat.string_types) \ | |
1260 | and isinstance(value.lineno, int): |
|
1262 | and isinstance(value.lineno, int): | |
1261 | linecache.checkcache(value.filename) |
|
1263 | linecache.checkcache(value.filename) | |
1262 | newtext = ulinecache.getline(value.filename, value.lineno) |
|
1264 | newtext = ulinecache.getline(value.filename, value.lineno) | |
1263 | if newtext: |
|
1265 | if newtext: | |
1264 | value.text = newtext |
|
1266 | value.text = newtext | |
1265 | return super(SyntaxTB, self).structured_traceback(etype, value, elist, |
|
1267 | return super(SyntaxTB, self).structured_traceback(etype, value, elist, | |
1266 | tb_offset=tb_offset, context=context) |
|
1268 | tb_offset=tb_offset, context=context) | |
1267 |
|
1269 | |||
1268 | def clear_err_state(self): |
|
1270 | def clear_err_state(self): | |
1269 | """Return the current error state and clear it""" |
|
1271 | """Return the current error state and clear it""" | |
1270 | e = self.last_syntax_error |
|
1272 | e = self.last_syntax_error | |
1271 | self.last_syntax_error = None |
|
1273 | self.last_syntax_error = None | |
1272 | return e |
|
1274 | return e | |
1273 |
|
1275 | |||
1274 | def stb2text(self, stb): |
|
1276 | def stb2text(self, stb): | |
1275 | """Convert a structured traceback (a list) to a string.""" |
|
1277 | """Convert a structured traceback (a list) to a string.""" | |
1276 | return ''.join(stb) |
|
1278 | return ''.join(stb) | |
1277 |
|
1279 | |||
1278 |
|
1280 | |||
1279 | # some internal-use functions |
|
1281 | # some internal-use functions | |
1280 | def text_repr(value): |
|
1282 | def text_repr(value): | |
1281 | """Hopefully pretty robust repr equivalent.""" |
|
1283 | """Hopefully pretty robust repr equivalent.""" | |
1282 | # this is pretty horrible but should always return *something* |
|
1284 | # this is pretty horrible but should always return *something* | |
1283 | try: |
|
1285 | try: | |
1284 | return pydoc.text.repr(value) |
|
1286 | return pydoc.text.repr(value) | |
1285 | except KeyboardInterrupt: |
|
1287 | except KeyboardInterrupt: | |
1286 | raise |
|
1288 | raise | |
1287 | except: |
|
1289 | except: | |
1288 | try: |
|
1290 | try: | |
1289 | return repr(value) |
|
1291 | return repr(value) | |
1290 | except KeyboardInterrupt: |
|
1292 | except KeyboardInterrupt: | |
1291 | raise |
|
1293 | raise | |
1292 | except: |
|
1294 | except: | |
1293 | try: |
|
1295 | try: | |
1294 | # all still in an except block so we catch |
|
1296 | # all still in an except block so we catch | |
1295 | # getattr raising |
|
1297 | # getattr raising | |
1296 | name = getattr(value, '__name__', None) |
|
1298 | name = getattr(value, '__name__', None) | |
1297 | if name: |
|
1299 | if name: | |
1298 | # ick, recursion |
|
1300 | # ick, recursion | |
1299 | return text_repr(name) |
|
1301 | return text_repr(name) | |
1300 | klass = getattr(value, '__class__', None) |
|
1302 | klass = getattr(value, '__class__', None) | |
1301 | if klass: |
|
1303 | if klass: | |
1302 | return '%s instance' % text_repr(klass) |
|
1304 | return '%s instance' % text_repr(klass) | |
1303 | except KeyboardInterrupt: |
|
1305 | except KeyboardInterrupt: | |
1304 | raise |
|
1306 | raise | |
1305 | except: |
|
1307 | except: | |
1306 | return 'UNRECOVERABLE REPR FAILURE' |
|
1308 | return 'UNRECOVERABLE REPR FAILURE' | |
1307 |
|
1309 | |||
1308 |
|
1310 | |||
1309 | def eqrepr(value, repr=text_repr): |
|
1311 | def eqrepr(value, repr=text_repr): | |
1310 | return '=%s' % repr(value) |
|
1312 | return '=%s' % repr(value) | |
1311 |
|
1313 | |||
1312 |
|
1314 | |||
1313 | def nullrepr(value, repr=text_repr): |
|
1315 | def nullrepr(value, repr=text_repr): | |
1314 | return '' |
|
1316 | return '' | |
1315 |
|
1317 | |||
1316 |
|
1318 | |||
1317 | #---------------------------------------------------------------------------- |
|
1319 | #---------------------------------------------------------------------------- | |
1318 |
|
1320 | |||
1319 | # module testing (minimal) |
|
1321 | # module testing (minimal) | |
1320 | if __name__ == "__main__": |
|
1322 | if __name__ == "__main__": | |
1321 | def spam(c, d_e): |
|
1323 | def spam(c, d_e): | |
1322 | (d, e) = d_e |
|
1324 | (d, e) = d_e | |
1323 | x = c + d |
|
1325 | x = c + d | |
1324 | y = c * d |
|
1326 | y = c * d | |
1325 | foo(x, y) |
|
1327 | foo(x, y) | |
1326 |
|
1328 | |||
1327 | def foo(a, b, bar=1): |
|
1329 | def foo(a, b, bar=1): | |
1328 | eggs(a, b + bar) |
|
1330 | eggs(a, b + bar) | |
1329 |
|
1331 | |||
1330 | def eggs(f, g, z=globals()): |
|
1332 | def eggs(f, g, z=globals()): | |
1331 | h = f + g |
|
1333 | h = f + g | |
1332 | i = f - g |
|
1334 | i = f - g | |
1333 | return h / i |
|
1335 | return h / i | |
1334 |
|
1336 | |||
1335 | print('') |
|
1337 | print('') | |
1336 | print('*** Before ***') |
|
1338 | print('*** Before ***') | |
1337 | try: |
|
1339 | try: | |
1338 | print(spam(1, (2, 3))) |
|
1340 | print(spam(1, (2, 3))) | |
1339 | except: |
|
1341 | except: | |
1340 | traceback.print_exc() |
|
1342 | traceback.print_exc() | |
1341 | print('') |
|
1343 | print('') | |
1342 |
|
1344 | |||
1343 | handler = ColorTB() |
|
1345 | handler = ColorTB() | |
1344 | print('*** ColorTB ***') |
|
1346 | print('*** ColorTB ***') | |
1345 | try: |
|
1347 | try: | |
1346 | print(spam(1, (2, 3))) |
|
1348 | print(spam(1, (2, 3))) | |
1347 | except: |
|
1349 | except: | |
1348 | handler(*sys.exc_info()) |
|
1350 | handler(*sys.exc_info()) | |
1349 | print('') |
|
1351 | print('') | |
1350 |
|
1352 | |||
1351 | handler = VerboseTB() |
|
1353 | handler = VerboseTB() | |
1352 | print('*** VerboseTB ***') |
|
1354 | print('*** VerboseTB ***') | |
1353 | try: |
|
1355 | try: | |
1354 | print(spam(1, (2, 3))) |
|
1356 | print(spam(1, (2, 3))) | |
1355 | except: |
|
1357 | except: | |
1356 | handler(*sys.exc_info()) |
|
1358 | handler(*sys.exc_info()) | |
1357 | print('') |
|
1359 | print('') | |
1358 |
|
1360 |
General Comments 0
You need to be logged in to leave comments.
Login now