Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #13122
| Date | 2011-09-11 07:55 -0400 |
|---|---|
| From | Dave Angel <davea@ieee.org> |
| Subject | Re: Invoke a superclass method from a subclass constructor |
| References | <CAPbrmCtnuAGk=T=hS43GH5g_Tx2oAGbQJ+AODrVfc5jxyQk7RA@mail.gmail.com> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.982.1315742183.27778.python-list@python.org> (permalink) |
On 01/-10/-28163 02:59 PM, Kayode Odeyemi wrote:
> Hello friends,
>
> An instance of my subclass doesn't invoke its superclass method, except when
> it is referenced
> directly.
>
> Here is what I mean:
>
>>>> class A(object):
> ... def log(self, module):
> ... return str('logged')
> ...
>
>>>> class B(A):
> ... def __init__(self, module):
> ... self.module = A().log(module)
> ...
>>>> c = B('system')
>>>> # I expect 'logged' to be printed here
>>>> print c.log('system') # why do I have to do this?
>>>> 'logged'
> Why do I have to make a call to c.log before log() method can be invoked?
>
> My reasoning is such that since I have passed the log() method to B's
> constructor, an instance
> of B should invoke A's log() method.
>
> What could I be missing in class A or B to have this working as expected?
What makes you think that A.log() was not invoked???
You have no print statement, so you can't tell that way. All the method
does is to modify a temporary object of type A, so you can't tell that way.
Perhaps you mean to write
self.module = A.log(self, module)
So that the return value could do some good.
DaveA
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
Re: Invoke a superclass method from a subclass constructor Dave Angel <davea@ieee.org> - 2011-09-11 07:55 -0400
csiph-web