base-class call decorator

C

castironpi

If you had this,

class KType( BaseType ):
def __init__( self, *ar, **kwar ):
self.setProp= True
BaseType.__init__( self, *ar, **kwar )

a lot, and wanted a decorator, what would it be? What are the pros
and cons?

class KType( BaseType ):
@basecall
def __init__( self ):
self.setProp= True

What about calling first vs. last, base class order, certain bases,
etc.? When is it easier to do without?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,770
Messages
2,569,583
Members
45,074
Latest member
StanleyFra

Latest Threads

Top