Skip to content
Snippets Groups Projects
Commit 0b216bef authored by AlQuemist's avatar AlQuemist
Browse files

PyInterpreter.BornAgain.importScript: check if the loaded BornAgain module is valid

parent bbf32858
No related branches found
No related tags found
1 merge request!2618Fix problems of PyCore
...@@ -649,8 +649,12 @@ PyObjectPtr PyInterpreter::BornAgain::importScript(const std::string& script, ...@@ -649,8 +649,12 @@ PyObjectPtr PyInterpreter::BornAgain::importScript(const std::string& script,
const std::string& path) const std::string& path)
{ {
PyObjectPtr ba_pymodule{PyInterpreter::BornAgain::import(path)}; PyObjectPtr ba_pymodule{PyInterpreter::BornAgain::import(path)};
// TODO: Check ba module
if (!ba_pymodule.valid()) {
ba_pymodule.discard();
throw std::runtime_error(
errorDescription("Cannot import BornAgain from path '" + path + "'"));
}
PyObject* pCompiledFn = Py_CompileString(script.c_str(), "", Py_file_input); PyObject* pCompiledFn = Py_CompileString(script.c_str(), "", Py_file_input);
if (!pCompiledFn) { if (!pCompiledFn) {
ba_pymodule.discard(); ba_pymodule.discard();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment