MCPcopy Index your code
hub / github.com/python/cpython / __rsub__

Method __rsub__

Lib/_collections_abc.py:636–642  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

634 if value not in other)
635
636 def __rsub__(self, other):
637 if not isinstance(other, Set):
638 if not isinstance(other, Iterable):
639 return NotImplemented
640 other = self._from_iterable(other)
641 return self._from_iterable(value for value in other
642 if value not in self)
643
644 def __xor__(self, other):
645 if not isinstance(other, Set):

Callers

nothing calls this directly

Calls 1

_from_iterableMethod · 0.95

Tested by

no test coverage detected