Searched refs:runcall (Results 1 – 13 of 13) sorted by relevance
/external/python/cpython2/Lib/hotshot/ |
D | __init__.py | 70 def runcall(self, func, *args, **kw): member in Profile 78 return self._prof.runcall(func, args, kw)
|
D | stones.py | 9 benchtime, stones = p.runcall(test.pystone.pystones)
|
/external/python/cpython2/Lib/test/ |
D | test_hotshot.py | 69 profiler.runcall(callable) 79 profiler.runcall(f, profiler)
|
/external/python/cpython2/Doc/library/ |
D | hotshot.rst | 76 .. method:: Profile.runcall(func, *args, **keywords) 135 >>> benchtime, stones = prof.runcall(test.pystone.pystones)
|
D | pdb.rst | 107 .. function:: runcall(function[, argument, ...]) 110 arguments. When :func:`runcall` returns, it returns whatever the function call 159 runcall(function[, argument, ...])
|
D | bdb.rst | 329 .. method:: runcall(func, *args, **kwds)
|
D | profile.rst | 312 .. method:: runcall(func, *args, **kwargs)
|
/external/python/cpython2/Lib/ |
D | cProfile.py | 146 def runcall(self, func, *args, **kw): member in Profile
|
D | pdb.py | 1247 def runcall(*args, **kwds): function 1248 return Pdb().runcall(*args, **kwds)
|
D | profile.py | 450 def runcall(self, func, *args, **kw): member in Profile
|
D | bdb.py | 431 def runcall(self, func, *args, **kwds): member in Bdb
|
/external/python/cpython2/Misc/ |
D | cheatsheet | 2168 runcall(function[, argument, ...]) 2265 >>> pdb.runcall(rm.run)
|
D | HISTORY | 2268 - Bug #1052503 pdb.runcall() was not passing along keyword arguments.
|