| 349 | } |
| 350 | |
| 351 | void CPythonHandler::Term(void) |
| 352 | { |
| 353 | // never shut down - Python leaks badly and has other |
| 354 | // side effects if you repeatedly Init then Term |
| 355 | Py_XDECREF(m_callback_init); |
| 356 | Py_XDECREF(m_callback_do); |
| 357 | Py_XDECREF(m_callback_term); |
| 358 | } |
| 359 | |
| 360 | ////////////////////////////////////////////////////////////////////////////// |
| 361 | // general error handler |
no outgoing calls
no test coverage detected