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


Groups > comp.lang.python > #32818

Base class and Derived class question

Newsgroups comp.lang.python
Date 2012-11-06 05:47 -0800
Message-ID <31d86df5-8cfe-46b8-ae54-84fbfd82e98e@googlegroups.com> (permalink)
Subject Base class and Derived class question
From cyberirakli@gmail.com

Show all headers | View raw


Hey guys,
I'm trying to understand how is working base class and derived class.
So, I have to files baseClass.py and derivedClass.py. 
baseClass.py : 
[CODE]class baseClass():
    def bFunction(self):
        print "We are in a base class"[/CODE]

derivedClass.py:
[CODE]import baseClass as baseClassMod
reload(baseClassMod)

class derivedClass(baseClassMod):
    def dFunction(self):
        print "We are in a derived Class" [/CODE]

buwhen I'm trying to run derivedClass.py I get this error :
[CODE][COLOR=Red]TypeError: Error when calling the metaclass bases
    module.__init__() takes at most 2 arguments (3 given)[/COLOR][/CODE]

Interesting thing is that if I run baseClass.py and then run :
[CODE]class derivedClass(baseClass):
    def dFunction(self):
        print "We are in a derived Class"[/CODE]
It works fine

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


Thread

Base class and Derived class question cyberirakli@gmail.com - 2012-11-06 05:47 -0800
  Re: Base class and Derived class question Hans Mulder <hansmu@xs4all.nl> - 2012-11-06 17:33 +0100

csiph-web