Class Python

class C(object):
    def __init__(self, parameter): pass
x = C.__new__(C, 23)
if isinstance(x, C): 
     C.__init__(x, 23)