Lets say I have
class Super(): def method1(): pass class Sub(Super): def method1(param1, param2, param3): stuff
Is this corr
Yes. Calls to "method1" will always go to the subclass. Method signature in Python only consist of the name and not the argument list.