ID EN
Debugger (pdb)

runcall

Python 3.11

Call the function (a function or method object, not a string) with the given arguments. When runcall() returns, it returns whatever the function call returned. The debugger prompt appears as soon as the function is entered.

Syntax

PYTHON
pdb.runcall(function, *args, **kwds)

See Also

runcall()