Answers for "non inspection access to protected member"

0

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
Posted by: Guest on July-23-2020

Code answers related to "non inspection access to protected member"

Python Answers by Framework

Browse Popular Code Answers by Language