| 14 | using namespace boost::python; |
| 15 | |
| 16 | BOOST_PYTHON_MODULE(myexceptions) |
| 17 | { |
| 18 | register_exception_translator<OutOfSteakException>(translateException); |
| 19 | |
| 20 | def("someFunction", &someFunction); |
| 21 | } |
nothing calls this directly
no outgoing calls
no test coverage detected