(self, help: str)
| 141 | |
| 142 | @cache |
| 143 | def binding_for_help(self, help: str) -> Binding | None: |
| 144 | for b in self.bindings: |
| 145 | if b.help == help: |
| 146 | return b |
| 147 | return None |
| 148 | |
| 149 | def list(self, context: str) -> Sequence[Binding]: |
| 150 | b = [x for x in self.bindings if context in x.contexts or context == "all"] |
no outgoing calls