| Tor Norbye | 3a2425a | 2013-11-04 10:16:08 -0800 | [diff] [blame^] | 1 | class A: |
| 2 | def __init__(self): | ||||
| 3 | self.x = 1 | ||||
| 4 | |||||
| 5 | def foo(self, a): | ||||
| 6 | self.<caret><warning descr="Unresolved attribute reference 'y' for class 'A'">y</warning>(1, a) | ||||
| 7 | |||||
| 8 | # Some comment | ||||
| 9 | |||||
| 10 | class B: | ||||
| 11 | pass | ||||