Skip to content

Fix const-cast warnings in vtkPythonInteractiveInterpreter.

David Gobbi requested to merge dgobbi/vtk:python-py3k-warning into master

PySys_GetObject/SetObject API continues to take char* (instead of const char*) till Python 3.4. Hence we need to use const_cast to avoid warnings.

Merge request reports