------------------------------------------------------------------------------
| 907 | |
| 908 | //------------------------------------------------------------------------------ |
| 909 | void vtkPythonInterpreter::WriteStdOut(const char* txt) |
| 910 | { |
| 911 | if (vtkPythonInterpreter::ConsoleBuffering) |
| 912 | { |
| 913 | vtkPythonInterpreter::StdOutBuffer += std::string(txt); |
| 914 | } |
| 915 | else |
| 916 | { |
| 917 | vtkOutputWindow::GetInstance()->DisplayText(txt); |
| 918 | NotifyInterpreters(vtkCommand::SetOutputEvent, const_cast<char*>(txt)); |
| 919 | } |
| 920 | } |
| 921 | |
| 922 | //------------------------------------------------------------------------------ |
| 923 | void vtkPythonInterpreter::FlushStdOut() {} |
nothing calls this directly
no test coverage detected