------------------------------------------------------------------------------
| 924 | |
| 925 | //------------------------------------------------------------------------------ |
| 926 | void vtkPythonInterpreter::WriteStdErr(const char* txt) |
| 927 | { |
| 928 | if (vtkPythonInterpreter::ConsoleBuffering) |
| 929 | { |
| 930 | vtkPythonInterpreter::StdErrBuffer += std::string(txt); |
| 931 | } |
| 932 | else |
| 933 | { |
| 934 | vtkOutputWindow::GetInstance()->DisplayErrorText(txt); |
| 935 | NotifyInterpreters(vtkCommand::ErrorEvent, const_cast<char*>(txt)); |
| 936 | } |
| 937 | } |
| 938 | |
| 939 | //------------------------------------------------------------------------------ |
| 940 | void vtkPythonInterpreter::FlushStdErr() {} |
nothing calls this directly
no test coverage detected