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


Groups > comp.lang.python > #38946 > unrolled thread

Re: inheritance and how to use it

Started byDave Angel <davea@davea.name>
First post2013-02-15 13:45 -0500
Last post2013-02-15 13:45 -0500
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

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

#38946 — Re: inheritance and how to use it

FromDave Angel <davea@davea.name>
Date2013-02-15 13:45 -0500
SubjectRe: inheritance and how to use it
Message-ID<mailman.1835.1360953976.2939.python-list@python.org>
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

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web