| Tor Norbye | 3a2425a | 2013-11-04 10:16:08 -0800 | [diff] [blame^] | 1 | __author__ = 'ktisha' |
| 2 | |||||
| 3 | class A: | ||||
| 4 | def __init__(self): | ||||
| 5 | self._a = 1 | ||||
| 6 | |||||
| 7 | def foo(self): | ||||
| 8 | self.b= 1 | ||||
| 9 | |||||
| 10 | |||||
| 11 | print <weak_warning descr="Access to a protected member _a of a class">A()._a</weak_warning> | ||||