(self, key)
| 69 | return func(**args) |
| 70 | |
| 71 | def __contains__(self, key): |
| 72 | return key in self.simple_edits or key in self.cut_buffer_edits |
| 73 | |
| 74 | def __getitem__(self, key): |
| 75 | if key in self.simple_edits: |
nothing calls this directly
no outgoing calls
no test coverage detected