Home | History | Annotate | Download | only in idlelib

Lines Matching refs:words

26             words = self.getwords()
29 words, index, insert, line = self.state
31 words = self.getwords()
33 if not words:
38 newword = words[index]
39 index = (index + 1) % len(words)
45 self.state = words, index, curinsert, curline
60 words = []
62 # search backwards through words before
67 words.append(w)
69 # search onwards through words after
73 words.append(w)
75 words.append(word)
76 return words