##// END OF EJS Templates
docstring for _default_arguments_from_docstring
Piti Ongmongkolkul -
Show More
@@ -666,6 +666,10 b' class IPCompleter(Completer):'
666 return matches
666 return matches
667
667
668 def _default_arguments_from_docstring(self,doc):
668 def _default_arguments_from_docstring(self,doc):
669 """Parse first line of docstring of the
670 form 'min(iterable[, key=func])\n' to find
671 keyword argument names.
672 """
669 doc = doc.lstrip()
673 doc = doc.lstrip()
670 sio = StringIO.StringIO(doc)
674 sio = StringIO.StringIO(doc)
671 #care only the firstline
675 #care only the firstline
General Comments 0
You need to be logged in to leave comments. Login now