[Zope] External Methods

Dieter Maurer dieter@handshake.de
Wed, 29 Nov 2000 00:28:26 +0100 (CET)


Kini Natekar writes:
 >     How to call an External Method from another
 > External Method and pass parameters ?
 >     I am just a beginner, so intricate details would
 > be appriciated.

def Method1(self, ...further args...):
  .....
  self.Method2(self, ...params for method2...)
  # or: Method2(self, ....), when "Method2" is in the same source
  ....



def Method2(self, ...furhter args...):
  ....



Dieter