On May 18, 12:41 am, [EMAIL PROTECTED] wrote:
>
> This could be very well be a bug where infinite recursion happens, but
> see if changing the recursion limit fixes this:
> >>> import sys
> >>> sys.getrecursionlimit()
> 1000
> >>> sys.setrecursionlimit(1)
> Regards,
> Ondrej
Thanks for the tip,
Am trying to stumble through the demos for mayavi, after having set up
PyVTK-0.4.74 (together with numpy, scipy, vtk, and mayavi. I'm trying
to use pyvtk to generate a vtk dataset with the following:
>> from Numeric import *
>>> import scipy
>>> import scipy.special
>>> x = (arange(50.0)-25)/2.0
>