| 548 | } |
| 549 | |
| 550 | PyObject* ConsoleSingleton::sPyWarning(PyObject* /*self*/, PyObject* args) |
| 551 | { |
| 552 | return FC_PYCONSOLE_MSG( |
| 553 | [](const std::string& notifier, const char* msg) { instance().warning(notifier, "%s", msg); }, |
| 554 | args |
| 555 | ); |
| 556 | } |
| 557 | |
| 558 | PyObject* ConsoleSingleton::sPyDeveloperWarning(PyObject* /*self*/, PyObject* args) |
| 559 | { |
nothing calls this directly
no test coverage detected