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