blob: 8a63fae72fbfc2bf1d55db0777cb47e1c53b9116 [file] [log] [blame]
class Test(object):
def __new__(cls, foo):
x = super(Test, cls).__new__(cls)
x.foo = foo
return x
def bar(self):
return self.f<ref>oo