calling upper constructor

Courageous jkraska at san.rr.com
Thu Jan 31 22:25:05 EST 2002


>class abc(base):
>   def __init__(self):
>     # how do I call base's init here?

class derive (base):

    def __init__ ( self, x ):

        base.__init__( self, x )






More information about the Python-list mailing list