| 510 | } |
| 511 | |
| 512 | void DebugPrint(PyObject* obj) { |
| 513 | std::string repr = PyObject_StdStringRepr(obj); |
| 514 | PySys_WriteStderr("%s\n", repr.c_str()); |
| 515 | } |
| 516 | |
| 517 | } // namespace internal |
| 518 | } // namespace py |
nothing calls this directly
no test coverage detected