(self, event, body=some.object)
| 727 | self.request("initialize", self.capabilities) |
| 728 | |
| 729 | def all_events(self, event, body=some.object): |
| 730 | return [ |
| 731 | occ.body |
| 732 | for occ in self.timeline.all_occurrences_of(timeline.Event(event, body)) |
| 733 | ] |
| 734 | |
| 735 | def output(self, category): |
| 736 | """Returns all output of a given category as a single string, assembled from |
no test coverage detected