C
cyberirakli
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 :
derivedClass.py:
buwhen I'm trying to run derivedClass.py I get this error :
Interesting thing is that if I run baseClass.py and then run :
It works fine
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"
derivedClass.py:
Code:
import baseClass as baseClassMod
reload(baseClassMod)
class derivedClass(baseClassMod):
def dFunction(self):
print "We are in a derived Class"
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)[/QUOTE]
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"