| 287 | class scoped_interpreter { |
| 288 | public: |
| 289 | explicit scoped_interpreter(bool init_signal_handlers = true, |
| 290 | int argc = 0, |
| 291 | const char *const *argv = nullptr, |
| 292 | bool add_program_dir_to_path = true) { |
| 293 | initialize_interpreter(init_signal_handlers, argc, argv, add_program_dir_to_path); |
| 294 | } |
| 295 | |
| 296 | #if PY_VERSION_HEX >= PYBIND11_PYCONFIG_SUPPORT_PY_VERSION_HEX |
| 297 | explicit scoped_interpreter(PyConfig *config, |
nothing calls this directly
no test coverage detected