1965 def __getCompletionList(self, text, completer, completions): |
1965 def __getCompletionList(self, text, completer, completions): |
1966 """ |
1966 """ |
1967 Private method to create a completions list. |
1967 Private method to create a completions list. |
1968 |
1968 |
1969 @param text text to complete (string) |
1969 @param text text to complete (string) |
1970 @param completer completer methode |
1970 @param completer completer method |
1971 @param completions set where to add new completions strings (set) |
1971 @param completions set where to add new completions strings (set) |
1972 """ |
1972 """ |
1973 state = 0 |
1973 state = 0 |
1974 try: |
1974 try: |
1975 comp = completer(text, state) |
1975 comp = completer(text, state) |