-----------------------------------------------------------------------------
| 383 | |
| 384 | //----------------------------------------------------------------------------- |
| 385 | void* pqPythonShell::consoleLocals() |
| 386 | { |
| 387 | // this ensures that the interpreter is initialized before we access its |
| 388 | // locals. |
| 389 | this->initialize(); |
| 390 | return this->Internals->interpreter()->GetInteractiveConsoleLocalsPyObject(); |
| 391 | } |
| 392 | |
| 393 | //----------------------------------------------------------------------------- |
| 394 | void pqPythonShell::setFontSize(int fontSize) |
no test coverage detected