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): |