blob: 979cfd9a5eadac954590a30757435ea3313831f9 [file] [log] [blame]
Tor Norbye3a2425a2013-11-04 10:16:08 -08001__author__ = 'ktisha'
2
3class A:
4 def __init__(self):
5 self._a = 1
6
7 def foo(self):
8 self.b= 1
9
10
11print <weak_warning descr="Access to a protected member _a of a class">A()._a</weak_warning>