(self, s: AbstractSet[Any])
| 1951 | return set(self).difference(*s) |
| 1952 | |
| 1953 | def __sub__(self, s: AbstractSet[Any]) -> MutableSet[_T]: |
| 1954 | if not collections._set_binops_check_strict(self, s): |
| 1955 | return NotImplemented |
| 1956 | return self.difference(s) |
| 1957 | |
| 1958 | def difference_update(self, *s: Iterable[Any]) -> None: |
| 1959 | for other in s: |
nothing calls this directly
no test coverage detected