eric6/DebugClients/Python/FlexCompleter.py

changeset 8230
8b5c6896655b
parent 8217
385f60c94548
equal deleted inserted replaced
8229:6fa22aa4fc4a 8230:8b5c6896655b
207 else: 207 else:
208 match = self._callable_postfix(val, match) 208 match = self._callable_postfix(val, match)
209 matches.append(match) 209 matches.append(match)
210 if matches or not noprefix: 210 if matches or not noprefix:
211 break 211 break
212 if noprefix == '_': 212 noprefix = '__' if noprefix == '_' else None
213 noprefix = '__'
214 else:
215 noprefix = None
216 matches.sort() 213 matches.sort()
217 return matches 214 return matches
218 215
219 216
220 def get_class_members(klass): 217 def get_class_members(klass):

eric ide

mercurial