(self, other: AbstractSet[object])
| 1035 | return self |
| 1036 | |
| 1037 | def __isub__(self, other: AbstractSet[object]) -> MutableSet[_T]: # type: ignore[misc,unused-ignore] # noqa: E501 |
| 1038 | self.difference_update(other) |
| 1039 | return self |
| 1040 | |
| 1041 | def add(self, elem: _T) -> None: |
| 1042 | set.add(self, elem) |
nothing calls this directly
no test coverage detected