| 101 | } |
| 102 | |
| 103 | template <class... Ts> void set_py_exception(Ts &&...xs) { |
| 104 | std::ostringstream oss; |
| 105 | set_py_exception_fill(oss, std::forward<Ts>(xs)...); |
| 106 | throw std::runtime_error(oss.str().c_str()); |
| 107 | } |
| 108 | |
| 109 | py_context::py_context(int argc, char **argv) |
| 110 | : py_config(argc, argv), |
no test coverage detected