Show More
@@ -672,11 +672,11 b' class IPCompleter(Completer):' | |||
|
672 | 672 | return matches |
|
673 | 673 | |
|
674 | 674 | def _default_arguments_from_docstring(self, doc): |
|
675 | """Parse first line of docstring for call signature | |
|
675 | """Parse first line of docstring for call signature. | |
|
676 | 676 | |
|
677 | 677 | Docstring should be of the form 'min(iterable[, key=func])\n'. |
|
678 | I can also parse cython docstring of the form | |
|
679 | 'Minuit.migrad(self, int ncall=10000, resume=True, int nsplit=1)' | |
|
678 | It can also parse cython docstring of the form | |
|
679 | 'Minuit.migrad(self, int ncall=10000, resume=True, int nsplit=1)'. | |
|
680 | 680 | """ |
|
681 | 681 | if doc is None: |
|
682 | 682 | return [] |
General Comments 0
You need to be logged in to leave comments.
Login now