Show More
@@ -988,7 +988,8 b' def _make_signature(completion)-> str:' | |||
|
988 | 988 | |
|
989 | 989 | """ |
|
990 | 990 | |
|
991 |
return '(%s)'% ', '.join([f for f in (_formatparamchildren(p) for |
|
|
991 | return '(%s)'% ', '.join([f for f in (_formatparamchildren(p) for signature in completion.get_signatures() | |
|
992 | for p in signature.defined_names()) if f]) | |
|
992 | 993 | |
|
993 | 994 | class IPCompleter(Completer): |
|
994 | 995 | """Extension of the completer class with IPython-specific features""" |
@@ -1398,7 +1399,7 b' class IPCompleter(Completer):' | |||
|
1398 | 1399 | if not try_jedi: |
|
1399 | 1400 | return [] |
|
1400 | 1401 | try: |
|
1401 |
return filter(completion_filter, interpreter.complet |
|
|
1402 | return filter(completion_filter, interpreter.complete()) | |
|
1402 | 1403 | except Exception as e: |
|
1403 | 1404 | if self.debug: |
|
1404 | 1405 | return [_FakeJediCompletion('Oops Jedi has crashed, please report a bug with the following:\n"""\n%s\ns"""' % (e))] |
General Comments 0
You need to be logged in to leave comments.
Login now