| 43 | { |
| 44 | |
| 45 | void bindException() |
| 46 | { |
| 47 | class_<std::exception_ptr>( "__std_exception_ptr", no_init ); |
| 48 | |
| 49 | ExceptionClass<Exception>( "Exception", PyExc_RuntimeError ) |
| 50 | .def( init<std::string>() ) |
| 51 | ; |
| 52 | } |
| 53 | |
| 54 | } |
no outgoing calls
no test coverage detected