(self, val, word)
| 122 | return None |
| 123 | |
| 124 | def _callable_postfix(self, val, word): |
| 125 | if callable(val) and not inspect.isclass(val): |
| 126 | word = word + fnsignature(val) |
| 127 | return word |
| 128 | |
| 129 | def global_matches(self, text): |
| 130 | """Compute matches when text is a simple name. |
no test coverage detected