Skip to content

Turn off stdout/stderr redirection for pvpython exe

David Gobbi requested to merge dgobbi/paraview:pvpython-redirect-off into master

By default vtkPythonInterpreter.cxx redirects all Python output to the output window, which is useful for embedded interpreters, but not for the pvpython and vtkpython executables.

This turns off stdout/stderr redirection in the pvpython executable to keep the output window from stealing Python's output. If redirection is needed, it can be done by the shell (via > and |).

Merge request reports