Access to a protected member _meta of a class code example
Example: noninspection access to protected member
class A(object):
def __init__(self, data):
self._data = data
def _equals(self, other):
# noinspection PyProtectedMember
return self._data == other._data