On Aug 2, 2009, at 5:36 AM, Steven D'Aprano wrote:
I have a series of subclasses like this:
class A(object):
def method(self, *args):
print "Lots of work gets done here in the base class"
class B(A):
def method(self, *args):
print "A little bit of work gets done in B"
On Sun, Aug 2, 2009 at 5:36 AM, Steven
D'Aprano wrote:
> I have a series of subclasses like this:
>
> class A(object):
> def method(self, *args):
> print "Lots of work gets done here in the base class"
>
> class B(A):
> def method(self, *args):
> print "A little bit of work gets