Home
last modified time | relevance | path

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

/external/python/cpython2/Lib/hotshot/
D__init__.py70 def runcall(self, func, *args, **kw): member in Profile
78 return self._prof.runcall(func, args, kw)
Dstones.py9 benchtime, stones = p.runcall(test.pystone.pystones)
/external/python/cpython2/Lib/test/
Dtest_hotshot.py69 profiler.runcall(callable)
79 profiler.runcall(f, profiler)
/external/python/cpython2/Doc/library/
Dhotshot.rst76 .. method:: Profile.runcall(func, *args, **keywords)
135 >>> benchtime, stones = prof.runcall(test.pystone.pystones)
Dpdb.rst107 .. function:: runcall(function[, argument, ...])
110 arguments. When :func:`runcall` returns, it returns whatever the function call
159 runcall(function[, argument, ...])
Dbdb.rst329 .. method:: runcall(func, *args, **kwds)
Dprofile.rst312 .. method:: runcall(func, *args, **kwargs)
/external/python/cpython2/Lib/
DcProfile.py146 def runcall(self, func, *args, **kw): member in Profile
Dpdb.py1247 def runcall(*args, **kwds): function
1248 return Pdb().runcall(*args, **kwds)
Dprofile.py450 def runcall(self, func, *args, **kw): member in Profile
Dbdb.py431 def runcall(self, func, *args, **kwds): member in Bdb
/external/python/cpython2/Misc/
Dcheatsheet2168 runcall(function[, argument, ...])
2265 >>> pdb.runcall(rm.run)
DHISTORY2268 - Bug #1052503 pdb.runcall() was not passing along keyword arguments.