Searched refs:extract_stack (Results 1 – 23 of 23) sorted by relevance
/external/tensorflow/tensorflow/python/debug/lib/ |
D | source_remote_test.py | 89 send_stack = traceback.extract_stack() 128 send_traceback = traceback.extract_stack() 160 send_traceback = traceback.extract_stack()
|
/external/python/cpython2/Lib/ |
D | traceback.py | 270 print_list(extract_stack(f, limit), file) 279 return format_list(extract_stack(f, limit)) 281 def extract_stack(f=None, limit = None): function
|
/external/python/cpython2/Doc/library/ |
D | traceback.rst | 85 .. function:: extract_stack([f[, limit]]) 95 :func:`extract_stack`, return a list of strings ready for printing. Each 130 A shorthand for ``format_list(extract_stack(f, limit))``. 251 ... print repr(traceback.extract_stack()) 263 ('<doctest>', 7, 'lumberstack', 'print repr(traceback.extract_stack())')]
|
/external/python/cpython3/Lib/ |
D | traceback.py | 186 print_list(extract_stack(f, limit=limit), file=file) 193 return format_list(extract_stack(f, limit=limit)) 196 def extract_stack(f=None, limit=None): function
|
/external/tensorflow/tensorflow/python/framework/ |
D | registry.py | 67 stack = traceback.extract_stack()
|
/external/scapy/scapy/ |
D | error.py | 27 stk = traceback.extract_stack()
|
D | base_classes.py | 252 for tb in traceback.extract_stack()+[("??",-1,None,"")]:
|
/external/tensorflow/tensorflow/python/util/ |
D | tf_decorator.py | 86 frame = _traceback.extract_stack(limit=2)[0]
|
/external/python/cpython3/Doc/library/ |
D | traceback.rst | 98 .. function:: extract_stack(f=None, limit=None) 108 :func:`extract_stack`, return a list of strings ready for printing. Each 148 A shorthand for ``format_list(extract_stack(f, limit))``. 442 ... print(repr(traceback.extract_stack())) 454 ('<doctest>', 7, 'lumberstack', 'print(repr(traceback.extract_stack()))')]
|
/external/tensorflow/tensorflow/python/debug/wrappers/ |
D | grpc_wrapper.py | 60 debug_server_urls, run_key, traceback.extract_stack(), graph,
|
/external/libmojo/third_party/catapult/devil/devil/utils/ |
D | reraiser_thread.py | 33 for filename, lineno, name, line in traceback.extract_stack(stack):
|
/external/chromium-trace/catapult/devil/devil/utils/ |
D | reraiser_thread.py | 33 for filename, lineno, name, line in traceback.extract_stack(stack):
|
/external/python/cpython2/Lib/test/ |
D | test_zipimport.py | 25 from traceback import extract_tb, extract_stack, print_tb 371 f,lno,n,line = extract_stack(tb.tb_frame, 1)[0]
|
D | test_traceback.py | 245 return traceback.extract_stack()
|
D | test_sys.py | 344 stack = traceback.extract_stack(frame)
|
/external/libmojo/mojo/public/tools/bindings/pylib/mojom/generate/ |
D | test_support.py | 158 stack = traceback.extract_stack()
|
/external/python/cpython3/Lib/asyncio/ |
D | futures.py | 160 self._source_traceback = traceback.extract_stack(sys._getframe(1))
|
D | coroutines.py | 94 self._source_traceback = traceback.extract_stack(sys._getframe(1))
|
D | events.py | 93 self._source_traceback = traceback.extract_stack(sys._getframe(1))
|
/external/python/cpython3/Lib/test/ |
D | test_zipimport.py | 19 from traceback import extract_tb, extract_stack, print_tb 608 f,lno,n,line = extract_stack(tb.tb_frame, 1)[0]
|
D | test_traceback.py | 666 return traceback.extract_stack(frame, **kwargs) 779 return traceback.extract_stack()
|
D | test_sys.py | 409 stack = traceback.extract_stack(frame)
|
/external/python/cpython3/Misc/ |
D | NEWS | 5187 format_stack(), and extract_stack() called without arguments.
|