class problem

Fredrik Lundh fredrik at pythonware.com
Mon Aug 28 14:15:25 EDT 2006


fegge wrote:

> when i declare a class, is there difference between the below:
> class myClass():
> class myClass(threading.Thread)

the former is a base class, the latter inherits behaviour from the 
threading.Thread class.

*please* read the tutorial before proceeding.

</F>




More information about the Python-list mailing list