(self, val, word)
| 56 | return rlcompleter.Completer.complete(self, text, state) |
| 57 | |
| 58 | def _callable_postfix(self, val, word): |
| 59 | # disable automatic insertion of '(' for global callables |
| 60 | return word |
| 61 | |
| 62 | def _callable_attr_postfix(self, val, word): |
| 63 | return rlcompleter.Completer._callable_postfix(self, val, word) |
no outgoing calls
no test coverage detected