(self, first, last)
| 742 | self.circumstances = circumstances |
| 743 | |
| 744 | def test(self, first, last): |
| 745 | assert isinstance(first, Occurrence) |
| 746 | assert isinstance(last, Occurrence) |
| 747 | |
| 748 | for occ in first.and_following(up_to=last, inclusive=True): |
| 749 | if occ.circumstances == self.circumstances: |
| 750 | yield {self: occ} |
| 751 | |
| 752 | def describe(self): |
| 753 | rest = repr(self.circumstances[1:]) |
nothing calls this directly
no test coverage detected