If you've got an error message like this, you've called up a method from the base class of your object using "new style classes", but the base class is an "old style class". The full error message looks something like this:
Traceback (most recent call last):
File "cl_n.py", line 24, in <module>
testgroup = [train("First Great Western cl 150",80,2)]
File "cl_n.py", line 10, in __init__
super(train,self).__init__(about)
TypeError: super() argument 1 must be type, not classobj
Here's the full
failing source code of my example:
class pubtrans:
def __init__(self,about):
self.info = about
def getabout(self):
return self.info
def getvehicles(self):
return 1
class train(pubtrans):
def __init__(self,about,vehicle_capacity,coaches):
super(train,self).__init__(about)
self.vc = vehicle_capacity
self.nc = coaches
def getcapacity(self):
return self.vc * self.nc
def getvehicles(self):
return self.nc
class bus(pubtrans):
def __init__(self,about,vehicle_capacity):
super(bus,self).__init__(about)
self.vc = vehicle_capacity
def getcapacity(self):
return self.vc
if __name__ == "__main__":
testgroup = [train("First Great Western cl 150",80,2)]
testgroup.append(bus("First Avon and Somerset",81))
testgroup.append(bus("Faresaver",29))
testgroup.append(train("South West Trains cl 159",75,3))
format = "%-30s %4d %d"
tpc = 0
tvc = 0
for option in testgroup:
text = option.getabout()
pass_count = option.getcapacity()
veh_count = option.getvehicles()
tpc += pass_count
tvc += veh_count
print format % (text, pass_count, veh_count)
print format % (" --- TOTAL ---",tpc,tvc)
The problem is that the base class is an
old style class because it's defined without any inheritance, whereas the extended classes / derived classes / subclasses are using the new style super call. There are two ways of solving the problem.
The first (and infinitely preferable) is to switch to new style classes by having the base class inherit from object - it's as easy as changing:
class pubtrans:
to
class pubtrans(object):
The second option (not recommended, as it retains old style classes which are not supported in Python 3) is to call up the constructor of the base class directly rather than using the super call. In other words, in my example the two lines:
super(train,self).__init__(about)
super(bus,self).__init__(about)
would both become:
pubtrans.__init__(self,about)
The complete source code of the new style example is
here and of the old style example is
here.
P.S. It runs, when corrected, like this:
Dorothy-2:2 grahamellis$ python cl_o.py
First Great Western cl 150 160 2
First Avon and Somerset 81 1
Faresaver 29 1
South West Trains cl 159 225 3
--- TOTAL --- 495 7
Dorothy-2:2 grahamellis$ (written 2009-09-18, updated 2009-09-19)
27d0
Associated topics are indexed under
Y112 - Python - Objects - Intermediate [4028] Really Simple Class and Inheritance example in Python - (2013-03-04)
[3887] Inheritance, Composition and Associated objects - when to use which - Python example - (2012-10-10)
[3796] Backquote, backtic, str and repr in Python - conversion object to string - (2012-07-05)
[3524] Metaclasses (Python) and Metatables (Lua) - (2011-11-17)
[3472] Static variables in functions - and better ways using objects - (2011-10-10)
[3442] A demonstration of how many Python facilities work together - (2011-09-16)
[3002] A list of special method and attribute names in Python - (2010-10-17)
[2994] Python - some common questions answered in code examples - (2010-10-10)
[2905] Defining static methods in Python - (2010-08-05)
[2889] Should Python classes each be in their own file? - (2010-07-27)
[2785] The Light bulb moment when people see how Object Orientation works in real use - (2010-05-28)
[2764] Python decorators - your own, staticmethod and classmethod - (2010-05-14)
[2722] Mixins example in Python - (2010-04-14)
[2720] Multiple inheritance in Python - complete working example - (2010-04-14)
[2717] The Multiple Inheritance Conundrum, interfaces and mixins - (2010-04-11)
[2693] Methods that run on classes (static methods) in Python - (2010-03-25)
[2485] How do I set up a constant in Python? - (2009-10-31)
[2368] Python - fresh examples of all the fundamentals - (2009-08-20)
[1819] Calling base class constructors - (2008-10-03)
[1661] Equality, sameness and identity - Python - (2008-05-31)
[1644] Using a utility method to construct objects of different types - Python - (2008-05-17)
[1517] Python - formatting objects - (2008-01-24)
[1217] What are factory and singleton classes? - (2007-06-04)
[1146] __new__ v __init__ - python constructor alternatives? - (2007-04-14)
[964] Practical polymorphism in action - (2006-12-04)
[903] Pieces of Python - (2006-10-23)
[831] Comparison of Object Oriented Philosophy - Python, Java, C++, Perl - (2006-08-13)
[656] Think about your design even if you don't use full UML - (2006-03-24)
[477] Class, static and unbound variables - (2005-10-25)
[383] Overloading of operators on standard objects in Python - (2005-07-19)
[296] Using a Python dictionary as a holder of object attributes - (2005-04-30)
Some other Articles
Sanity checking the price, and selling up to increase incomeAutumn Fruits and Bristol Old StationFurther North - long summer days and lovely countrysideRemoval of technical resources from this siteTypeError: super() argument 1 must be type, not classobj (Python)Robust user input (exception handling) example in PythonTesting code in Python - doctest, unittest and othersPound Sign in Python ProgramBut I am reading from a file - no need to prompt (Perl)Low Sun - Autumn is here