From 1a65218cc902962ad3f968c357396238dd73d7a3 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Tue, 14 May 2002 07:49:32 +0000 Subject: [PATCH] Fixing nested triple quotes again git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15552 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/wxPython/lib/vtk.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/wxPython/wxPython/lib/vtk.py b/wxPython/wxPython/lib/vtk.py index 7d986a8bbc..6a6c977185 100644 --- a/wxPython/wxPython/lib/vtk.py +++ b/wxPython/wxPython/lib/vtk.py @@ -11,7 +11,7 @@ http://public.kitware.com/cgi-bin/cvsweb.cgi/VTK/Wrapping/Python/vtk/wx/ print __doc__ -""" +''' #---------------------------------------------------------------------- # Name: wxPython.lib.vtk # Purpose: Provides a wrapper around the vtkRenderWindow from the @@ -52,14 +52,14 @@ def debug(msg): class wxVTKRenderWindowBase(wxWindow): - ''' + """ A base class that enables one to embed a vtkRenderWindow into a wxPython widget. This class embeds the RenderWindow correctly under different platforms. Provided are some empty methods that can be overloaded to provide a user defined interaction behaviour. The event handling functions have names that are similar to the ones in the vtkInteractorStyle class included with VTK. - ''' + """ def __init__(self, parent, id, position=wxDefaultPosition, size=wxDefaultSize, style=0): @@ -566,4 +566,4 @@ class wxVTKRenderWindow(wxVTKRenderWindowBase): self._PickedAssembly.SetProperty(self._PickedProperty) self.Render() -""" +''' -- 2.47.2