Searched refs:getsourcelines (Results 1 – 18 of 18) sorted by relevance
/external/tensorflow/tensorflow/python/framework/ |
D | traceable_stack_test.py | 41 expected_lineno = inspect.getsourcelines(placeholder)[1] + 1 59 expected_lineno = inspect.getsourcelines(placeholder)[1] + 1 124 expected_lineno_1 = inspect.getsourcelines(placeholder_1)[1] + 1 125 expected_lineno_2 = inspect.getsourcelines(placeholder_2)[1] + 1
|
/external/python/cpython2/Misc/NEWS.d/next/Library/ |
D | 2018-08-22-17-43-52.bpo-6700.hp7C4B.rst | 1 Fix inspect.getsourcelines for module level frames/tracebacks.
|
/external/tensorflow/tensorflow/python/util/ |
D | tf_inspect.py | 343 def getsourcelines(object): # pylint: disable=redefined-builtin function 345 return _inspect.getsourcelines(tf_decorator.unwrap(object)[1])
|
D | tf_inspect_test.py | 536 expected = inspect.getsourcelines( 540 tf_inspect.getsourcelines(test_decorated_function_with_defaults))
|
/external/tensorflow/tensorflow/python/autograph/core/ |
D | errors_test.py | 43 _, lineno = tf_inspect.getsourcelines(function)
|
/external/tensorflow/tensorflow/python/autograph/pyct/ |
D | origin_info.py | 177 _, function_lineno = tf_inspect.getsourcelines(function)
|
/external/python/cpython3/Lib/ |
D | pdb.py | 105 def getsourcelines(obj): function 1256 lines, lineno = getsourcelines(self.curframe) 1272 lines, lineno = getsourcelines(obj)
|
D | inspect.py | 946 def getsourcelines(object): function 973 lines, lnum = getsourcelines(object)
|
/external/python/cpython2/Lib/ |
D | inspect.py | 681 def getsourcelines(object): function 707 lines, lnum = getsourcelines(object)
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.5.0a4.rst | 176 inspect.getsourcelines() now tries to compute the start and end lines from
|
D | 3.7.1rc1.rst | 515 Fix inspect.getsourcelines for module level frames/tracebacks. Patch by
|
/external/python/cpython3/Lib/unittest/test/ |
D | test_case.py | 1424 _runtime_warn_lineno = inspect.getsourcelines(_runtime_warn)[1] 1519 _runtime_warn_lineno = inspect.getsourcelines(_runtime_warn)[1]
|
/external/ply/ply/ply/ |
D | lex.py | 833 lines, linen = inspect.getsourcelines(module)
|
D | yacc.py | 3005 lines, linen = inspect.getsourcelines(module)
|
/external/selinux/python/sepolgen/src/sepolgen/ |
D | lex.py | 833 lines, linen = inspect.getsourcelines(module)
|
D | yacc.py | 3005 lines, linen = inspect.getsourcelines(module)
|
/external/python/cpython2/Doc/library/ |
D | inspect.rst | 428 .. function:: getsourcelines(object)
|
/external/python/cpython3/Doc/library/ |
D | inspect.rst | 489 .. function:: getsourcelines(object)
|