| 635 | |
| 636 | |
| 637 | PyObject * |
| 638 | PP_Debug_Bytecode(PyObject *codeobject, PyObject *moddict) |
| 639 | { |
| 640 | int res = 0; |
| 641 | PyObject *presult = NULL; |
| 642 | fixPdbRetval(moddict); |
| 643 | res = PP_Run_Function( /* "pdb.runeval(codeobj, gdict, ldict)" */ |
| 644 | "pdb", "runeval", /* accepts string|code, code=stmt|expr */ |
| 645 | "O", &presult, |
| 646 | "(OOO)", codeobject, moddict, moddict); |
| 647 | return (res != 0) ? NULL : presult; /* null if error in run_function */ |
| 648 | } |
| 649 | // NOLINTEND |
| 650 | // clang-format on |
no test coverage detected