Lines Matching refs:word
98 def _callable_postfix(self, val, word): argument
100 word += "("
103 word += ")"
107 return word
120 for word in keyword.kwlist:
121 if word[:n] == text:
122 seen.add(word)
123 if word in {'finally', 'try'}:
124 word = word + ':'
125 elif word not in {'False', 'None', 'True',
128 word = word + ' '
129 matches.append(word)
131 for word, val in nspace.items():
132 if word[:n] == text and word not in seen:
133 seen.add(word)
134 matches.append(self._callable_postfix(val, word))
175 for word in words:
176 if (word[:n] == attr and
177 not (noprefix and word[:n+1] == noprefix)):
178 match = "%s.%s" % (expr, word)
179 if isinstance(getattr(type(thisobject), word, None),
189 if (value := getattr(thisobject, word, None)) is not None: