| 130 | |
| 131 | template <typename T> |
| 132 | void doNothingDel(const T& self) |
| 133 | { |
| 134 | issueDeprecationWarning("del obj"); |
| 135 | } |
| 136 | |
| 137 | // https://nvbugs/3479811 Create a wrapper for C++ to python throw |
| 138 | void throwPyError(PyObject* type, std::string const& message = "python error"); |
nothing calls this directly
no test coverage detected