mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 20:01:20 +07:00
13 lines
225 B
Python
13 lines
225 B
Python
__author__ = 'ktisha'
|
|
|
|
class A:
|
|
def __init__(self):
|
|
self._a = 1
|
|
|
|
def foo(self):
|
|
self.b= 1
|
|
|
|
class B:
|
|
def __init__(self):
|
|
<weak_warning descr="Access to a protected member _a of a class">A()._a</weak_warning>
|