| 28 | namespace python { |
| 29 | |
| 30 | Interpreter *getInterpreter() { |
| 31 | static Interpreter interpreter; |
| 32 | return &interpreter; |
| 33 | } |
| 34 | |
| 35 | PythonScriptEngine::PythonScriptEngine() { |
| 36 | auto intepreter = getInterpreter(); |
no outgoing calls
no test coverage detected