Re: [Zope-dev] Calling parent class method when method is overridden in current class?

2000-08-03 Thread Phil Harris
e Alexander" <[EMAIL PROTECTED]> To: "Phil Harris" <[EMAIL PROTECTED]> Cc: "Zope-Dev@Zope. Org" <[EMAIL PROTECTED]> Sent: Thursday, August 03, 2000 9:40 AM Subject: Re: [Zope-dev] Calling parent class method when method is overridden in current class? > P

Re: [Zope-dev] Calling parent class method when method is overridden in current class?

2000-08-03 Thread Steve Alexander
Phil Harris wrote: > > Hi all, > > I'm in the process of creating a Python based product, and have a need to > call the base classes index_html method. > > My problem is that I need to call it from my classes index_html. > > My class has DTMLDocument as the base class so I want to call somethi

[Zope-dev] Calling parent class method when method is overridden in current class?

2000-08-03 Thread Phil Harris
Hi all, I'm in the process of creating a Python based product, and have a need to call the base classes index_html method. My problem is that I need to call it from my classes index_html. My class has DTMLDocument as the base class so I want to call something like DTMLDocument.index_html(). Th