def __get_copyable_attrs()

in testslide/strict_mock.py [0:0]


    def __get_copyable_attrs(self, self_copy: "StrictMock") -> List[str]:
        return [
            name
            for name in type(self).__dict__
            if name not in self_copy.__dict__
            and (
                not name.startswith("__")
                or not name.endswith("__")
                or name in self.__SETTABLE_MAGICS
            )
        ]