calling upper constructor
Courageous
jkraska at san.rr.com
Thu Jan 31 22:25:05 EST 2002
More information about the Python-list mailing list
Thu Jan 31 22:25:05 EST 2002
- Previous message (by thread): calling upper constructor
- Next message (by thread): calling upper constructor
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
>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 )
- Previous message (by thread): calling upper constructor
- Next message (by thread): calling upper constructor
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list