/external/python/cpython2/Lib/test/ |
D | test_traceback.py | 21 return traceback.format_exception_only(exc, value) 127 lst = traceback.format_exception_only(e.__class__, e) 148 err = traceback.format_exception_only(str_type, None) 155 err = traceback.format_exception_only(str_type, str_value) 163 err = traceback.format_exception_only(X, X()) 169 err = traceback.format_exception_only(None, None) 174 lines = traceback.format_exception_only(type(err), err) 178 lines = traceback.format_exception_only(type(err), err)
|
/external/python/cpython2/Lib/ |
D | traceback.py | 126 lines = format_exception_only(etype, value) 144 list = list + format_exception_only(etype, value) 147 def format_exception_only(etype, value): function
|
D | code.py | 138 list = traceback.format_exception_only(type, value) 159 list[len(list):] = traceback.format_exception_only(type, value)
|
D | py_compile.py | 48 tbtext = ''.join(traceback.format_exception_only(exc_type, exc_value))
|
D | cgi.py | 937 traceback.format_exception_only(type, value)
|
D | doctest.py | 1337 exc_msg = traceback.format_exception_only(*exc_info[:2])[-1]
|
/external/python/cpython3/Lib/ |
D | traceback.py | 124 def format_exception_only(etype, value): function 140 return list(TracebackException(etype, value, None).format_exception_only()) 547 def format_exception_only(self): member in TracebackException 622 yield from self.format_exception_only()
|
D | py_compile.py | 49 tbtext = ''.join(traceback.format_exception_only(
|
D | code.py | 124 lines = traceback.format_exception_only(type, value)
|
D | pdb.py | 312 traceback.format_exception_only(exc_type, exc_value)[-1].strip())) 388 self.error(traceback.format_exception_only(*exc_info)[-1].strip()) 1107 self.error(traceback.format_exception_only(*exc_info)[-1].strip()) 1166 self.error(traceback.format_exception_only(*exc_info)[-1].strip()) 1177 err = traceback.format_exception_only(*exc_info)[-1].strip()
|
D | cgi.py | 883 traceback.format_exception_only(type, value)
|
D | pydoc.py | 76 from traceback import format_exception_only 2631 format_exception_only(type(exc), exc))
|
D | doctest.py | 1358 exc_msg = traceback.format_exception_only(*exception[:2])[-1]
|
/external/python/cpython3/Lib/asyncio/ |
D | base_tasks.py | 84 for line in traceback.format_exception_only(exc.__class__, exc):
|
/external/chromium-trace/catapult/devil/devil/android/ |
D | ports.py | 179 exception_error_msgs = traceback.format_exception_only(type(e), e)
|
/external/python/cpython3/Lib/test/ |
D | test_traceback.py | 30 return traceback.format_exception_only(exc, value) 71 err = traceback.format_exception_only(SyntaxError, exc) 92 lst = traceback.format_exception_only(e.__class__, e) 99 err = traceback.format_exception_only(X, X())
|
/external/python/cpython2/Doc/library/ |
D | traceback.rst | 102 .. function:: format_exception_only(etype, value) 280 >>> traceback.format_exception_only(type(an_error), an_error)
|
D | doctest.rst | 1319 :func:`traceback.format_exception_only`. :attr:`exc_msg` ends with a newline
|
/external/python/cpython2/Lib/idlelib/ |
D | run.py | 183 lines = traceback.format_exception_only(typ, val)
|
/external/python/cpython3/Doc/library/ |
D | traceback.rst | 124 .. function:: format_exception_only(etype, value) 262 .. method:: format_exception_only() 485 >>> traceback.format_exception_only(type(an_error), an_error)
|
D | doctest.rst | 1275 :func:`traceback.format_exception_only`. :attr:`exc_msg` ends with a newline
|
/external/python/cpython3/Lib/idlelib/ |
D | run.py | 243 lines = traceback.format_exception_only(typ, exc)
|
/external/autotest/client/cros/faft/ |
D | rpc_functions.py | 143 traceback.format_exception_only(exc_class, exc))
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7b2.rst | 168 ``traceback.format_exception_only()`` encodes unicode message to ASCII with
|
D | 2.6a1.rst | 3752 Fix a bug in traceback.format_exception_only() that led to an error being
|