(statement, globals, locals)
| 2693 | return Pdb().runeval(expression, globals, locals) |
| 2694 | |
| 2695 | def runctx(statement, globals, locals): |
| 2696 | # B/W compatibility |
| 2697 | run(statement, globals, locals) |
| 2698 | |
| 2699 | def runcall(*args, **kwds): |
| 2700 | """Call the function (a function or method object, not a string) |
nothing calls this directly
no test coverage detected
searching dependent graphs…