----------------------------------------------------------------------------
| 701 | |
| 702 | //---------------------------------------------------------------------------- |
| 703 | QString ctkPythonConsole::ps2() const |
| 704 | { |
| 705 | PyObject * ps2 = PySys_GetObject(const_cast<char*>("ps2")); |
| 706 | const char * ps2_str = PyString_AsString(ps2); |
| 707 | return QLatin1String(ps2_str); |
| 708 | } |
| 709 | |
| 710 | //---------------------------------------------------------------------------- |
| 711 | void ctkPythonConsole::setPs2(const QString& newPs2) |
no outgoing calls
no test coverage detected