| 68 | } |
| 69 | |
| 70 | void PythonEngine::pyimport(const std::string& importName, const std::string& includePath) { |
| 71 | addToPythonPath(includePath); |
| 72 | PyImport_ImportModule(importName.c_str()); |
| 73 | } |
| 74 | |
| 75 | void PythonEngine::setupPythonPath(const std::vector<openstudio::path>& includeDirs) { |
| 76 |
nothing calls this directly
no test coverage detected