Searched defs:exc_info (Results 1 - 1 of 1) sorted by last modified time

/external/chromium_org/third_party/jinja2/
H A Ddebug.py117 def exc_info(self): member in class:ProcessedTraceback
123 """Standard python exc_info for re-raising"""
132 def make_traceback(exc_info, source_hint=None):
133 """Creates a processed traceback object from the exc_info."""
134 exc_type, exc_value, tb = exc_info
136 exc_info = translate_syntax_error(exc_value, source_hint)
140 return translate_exception(exc_info, initial_skip)
147 exc_info = (error.__class__, error, None)
151 return fake_exc_info(exc_info, filename, error.lineno)
154 def translate_exception(exc_info, initial_ski
[all...]

Completed in 93 milliseconds