Re: [Paraview] hidden python methods??

2008-10-17 Thread Berk Geveci
It is magic :-) Actually, it is a common python design pattern. Most of the classes in the servermanager module are wrappers around low-level classes provided by the paraview server manager C++ library. In python, you can define a method (__getattr__) that gets called whenever a symbol cannot be r

[Paraview] hidden python methods??

2008-10-17 Thread David Fuentes
working through one of the examples on the wiki http://paraview.org/Wiki/ParaView/Python_Scripting#Animating reader = sources.ExodusIIReader(“.../can.ex2”) . . . reader.UpdatePipelineInformation() However dir(reader) does Not return a method by the name of "UpdatePipelineI