##// END OF EJS Templates
_default_arguments_from_docstring docstring style
Piti Ongmongkolkul -
Show More
@@ -671,10 +671,12 b' class IPCompleter(Completer):'
671 671
672 672 return matches
673 673
674 def _default_arguments_from_docstring(self,doc):
675 """Parse first line of docstring of the
676 form 'min(iterable[, key=func])\n' to find
677 keyword argument names.
674 def _default_arguments_from_docstring(self, doc):
675 """Parse first line of docstring for call signature
676
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 680 """
679 681 if doc is None:
680 682 return []
General Comments 0
You need to be logged in to leave comments. Login now