Home
last modified time | relevance | path

Searched refs:runcall (Results 1 – 10 of 10) sorted by relevance

/third_party/python/Lib/test/
Dtest_bdb.py530 tracer.runcall(tfunc_import)
595 tracer.runcall(tfunc_main)
609 tracer.runcall(tfunc_main)
620 tracer.runcall(tfunc_main)
634 tracer.runcall(tfunc_import)
646 tracer.runcall(tfunc_main)
659 tracer.runcall(tfunc_main)
671 tracer.runcall(tfunc_main)
682 tracer.runcall(tfunc_main)
693 tracer.runcall(tfunc_main)
[all …]
/third_party/python/Lib/
DcProfile.py106 def runcall(self, func, /, *args, **kw): member in Profile
Dprofile.py428 def runcall(self, func, /, *args, **kw): member in Profile
Dpdb.py1616 def runcall(*args, **kwds): function
1617 return Pdb().runcall(*args, **kwds)
Dbdb.py631 def runcall(self, func, /, *args, **kwds): member in Bdb
/third_party/python/Doc/library/
Dpdb.rst122 .. function:: runcall(function, *args, **kwds)
125 given arguments. When :func:`runcall` returns, it returns whatever the
197 runcall(function, *args, **kwds)
Dbdb.rst346 .. method:: runcall(func, /, *args, **kwds)
Dprofile.rst312 .. method:: runcall(func, /, *args, **kwargs)
/third_party/python/Doc/whatsnew/
D3.8.rst1725 :meth:`profile.Profile.runcall`, :meth:`cProfile.Profile.runcall`,
1726 :meth:`bdb.Bdb.runcall`, :meth:`trace.Trace.runfunc` and
/third_party/python/Misc/
DHISTORY19652 - Bug #1052503 pdb.runcall() was not passing along keyword arguments.