| 535 | } |
| 536 | |
| 537 | void InterpreterSingleton::addPythonPath(const char* Path) |
| 538 | { |
| 539 | PyGILStateLocker locker; |
| 540 | Py::List list(PySys_GetObject("path")); |
| 541 | list.append(Py::String(Path)); |
| 542 | } |
| 543 | |
| 544 | std::string InterpreterSingleton::getPythonPath() |
| 545 | { |
no test coverage detected