(self, val, word)
| 100 | return None |
| 101 | |
| 102 | def _callable_postfix(self, val, word): |
| 103 | if callable(val): |
| 104 | word += "(" |
| 105 | try: |
| 106 | if not inspect.signature(val).parameters: |
| 107 | word += ")" |
| 108 | except ValueError: |
| 109 | pass |
| 110 | |
| 111 | return word |
| 112 | |
| 113 | def global_matches(self, text): |
| 114 | """Compute matches when text is a simple name. |
no test coverage detected