blob: 947e404b2d74b25f2cf7a78cf9b4ba6e70f26910 [file] [log] [blame]
Tor Norbye3a2425a2013-11-04 10:16:08 -08001class C(object):
2 def __new__(cls):
3 self = object.__new__(cls)
4 self.foo = 1
5 return self
6
7x = C()
8print(x.foo)
9print(x.<warning descr="Unresolved attribute reference 'bar' for class 'C'">bar</warning>)