(self, text)
| 54 | methods_names = [m[3:] for m in dir(self) if m.startswith("do_")] |
| 55 | |
| 56 | def gen_comp(self, text): |
| 57 | return [m for m in methods_names if m.startswith(text)] |
| 58 | import types |
| 59 | newcomp = types.MethodType(gen_comp, compl) |
| 60 | compl.custom_matchers.insert(0, newcomp) |
nothing calls this directly
no outgoing calls
no test coverage detected