| Tor Norbye | 3a2425a | 2013-11-04 10:16:08 -0800 | [diff] [blame^] | 1 | class C(object): |
| 2 | def __new__(cls): | ||||
| 3 | self = object.__new__(cls) | ||||
| 4 | self.foo = 1 | ||||
| 5 | return self | ||||
| 6 | |||||
| 7 | x = C() | ||||
| 8 | print(x.foo) | ||||
| 9 | print(x.<warning descr="Unresolved attribute reference 'bar' for class 'C'">bar</warning>) | ||||