Multiple constructors

#!/usr/bin/env python

class MyClass( object):
    #
    # args   - tuple of anonymous arguments
    # kwargs - dictionary of named arguments
    #
    def __init__( self, *args, **kwargs):
        print( " __init__")
        print( "args", args, "kwargs", kwargs)