Home | History | Annotate | Download | only in python2.7

Lines Matching refs:word

0 """Word completion for GNU readline.
91 def _callable_postfix(self, val, word):
93 word = word + "("
94 return word
106 for word in keyword.kwlist:
107 if word[:n] == text:
108 matches.append(word)
110 for word, val in nspace.items():
111 if word[:n] == text and word != "__builtins__":
112 matches.append(self._callable_postfix(val, word))
147 for word in words:
148 if word[:n] == attr and hasattr(thisobject, word):
149 val = getattr(thisobject, word)
150 word = self._callable_postfix(val, "%s.%s" % (expr, word))
151 matches.append(word)