Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #38946

Re: inheritance and how to use it

Date 2013-02-15 13:45 -0500
From Dave Angel <davea@davea.name>
Subject Re: inheritance and how to use it
References <511E6971.5040109@gmail.com> <511E6C25.9020502@davea.name> <511E6F05.1090201@gmail.com> <511E7885.8060900@davea.name> <511E7E62.7020305@gmail.com>
Newsgroups comp.lang.python
Message-ID <mailman.1835.1360953976.2939.python-list@python.org> (permalink)

Show all headers | View raw


On 02/15/2013 01:28 PM, Bob Brusa wrote:
>
>> <snip>

>>
>
> to make it more clear, I attach a cut-down version of my program. It
> includes comments to explain in more detail what my problem is.
> Bob
>

Good job cutting down the sample.  Naturally, it'd have been smart to 
tell us you don't get the same traceback this way.  But it looks like 
the first problem is in that missing __init__() method.  Instead of 
saying "it doe not work" it'd be good to examine just what error 
traceback you got when you did have it there.  I suspect it's because 
you're passing parameters in when you invoke it  (iodev, baud_rate = 
57600)  but you don't have any arguments.  You don't even have the self 
argument.

You are also missing the super call, as outlined earlier in this thread. 
  So the base class won't being properly initialized once you fix the 
first problem.

Reread Thomas Rachel's message, and if you still can't make it work, 
tell us what errors you still get, or what you don't understand.




-- 
DaveA

Back to comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

Re: inheritance and how to use it Dave Angel <davea@davea.name> - 2013-02-15 13:45 -0500

csiph-web