33 PyGILState_STATE gstate = PyGILState_Ensure();
35 auto module = getHelpWindowModule();
36 module.attr("show_help_page")(relative_url);
37 }
catch (boost::python::error_already_set &) {
39 PyGILState_Release(gstate);
40 throw std::runtime_error(
"Error calling show_help_page in Python.");
42 PyGILState_Release(gstate);