Lines Matching refs:docstring
620 for line in f.docstring.split('\n'):
685 if new_or_init and not f.docstring:
2076 docstring=None, kind=CALLABLE, coexist=False, argument
2087 self.docstring = docstring or ''
2134 'docstring': self.docstring, 'kind': self.kind, 'coexist': self.coexist,
2155 docstring=None, group=0): argument
2162 self.docstring = docstring or ''
2178 'docstring': self.docstring, 'group': self.group,
3513 …me=function_name, full_name=full_name, module=module, cls=cls, c_basename=c_basename, docstring='')
4004 new_docstring = last_parameter.docstring
4011 last_parameter.docstring = new_docstring
4022 new_docstring = self.function.docstring
4030 self.function.docstring = new_docstring
4036 if new_or_init and not f.docstring:
4038 return f.docstring
4213 if not p.docstring.strip():
4222 add(textwrap.indent(rstrip_lines(p.docstring.rstrip()), " "))
4231 docstring = f.docstring.rstrip()
4232 lines = [line.rstrip() for line in docstring.split('\n')]
4257 parameters_marker_count = len(docstring.split('{parameters}')) - 1
4268 docstring = "\n".join(lines)
4270 add(docstring)
4271 docstring = output()
4273 docstring = linear_format(docstring, parameters=parameters)
4274 docstring = docstring.rstrip()
4276 return docstring
4301 value.docstring = value.docstring.rstrip()
4303 self.function.docstring = self.format_docstring()