Searched refs:countcallers (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython2/Lib/ |
D | trace.py | 451 def __init__(self, count=1, trace=1, countfuncs=0, countcallers=0, argument 485 if countcallers: 690 countcallers = False 703 countcallers = True 771 if not (count or trace or report or listfuncs or countcallers): 794 countcallers=countcallers, ignoremods=ignore_modules,
|
/external/python/cpython2/Lib/test/ |
D | test_trace.py | 105 self.tracer = Trace(count=1, trace=0, countfuncs=0, countcallers=0) 178 tracer = Trace(count=1, trace=0, countfuncs=0, countcallers=0) 195 self.tracer = Trace(count=1, trace=0, countfuncs=0, countcallers=0) 258 self.tracer = Trace(count=0, trace=0, countcallers=1)
|
/external/python/cpython3/Lib/test/ |
D | test_trace.py | 122 self.tracer = Trace(count=1, trace=0, countfuncs=0, countcallers=0) 215 tracer = Trace(count=1, trace=0, countfuncs=0, countcallers=0) 234 self.tracer = Trace(count=1, trace=0, countfuncs=0, countcallers=0) 326 self.tracer = Trace(count=0, trace=0, countcallers=1)
|
/external/python/cpython3/Lib/ |
D | trace.py | 388 def __init__(self, count=1, trace=1, countfuncs=0, countcallers=0, argument 421 if countcallers: 698 countcallers=opts.trackcalls, ignoremods=opts.ignore_module,
|
/external/python/cpython2/Doc/library/ |
D | trace.rst | 133 .. class:: Trace([count=1[, trace=1[, countfuncs=0[, countcallers=0[, ignoremods=()[, ignoredirs=()… 138 functions called during the run. *countcallers* enables call relationship
|
/external/python/cpython3/Doc/library/ |
D | trace.rst | 142 .. class:: Trace(count=1, trace=1, countfuncs=0, countcallers=0, ignoremods=(),\ 148 functions called during the run. *countcallers* enables call relationship
|
/external/python/cpython2/Misc/ |
D | HISTORY | 3415 - Added countcallers arg to trace.Trace class (--trackcalls command line arg
|
/external/python/cpython3/Misc/ |
D | HISTORY | 20799 - Added countcallers arg to trace.Trace class (--trackcalls command line arg
|