module documentation

Epyoc-style docstring parsing.

Function compose Render a parsed docstring into docstring text.
Function parse Parse the epydoc-style docstring into its components.
Function _clean_str Undocumented
def compose(docstring: Docstring, rendering_style: RenderingStyle = RenderingStyle.COMPACT, indent: str = ' ') -> str: (source)

Render a parsed docstring into docstring text.

Parameters
docstring:Docstringparsed docstring representation
rendering_style:RenderingStylethe style to render docstrings
indent:strthe characters used as indentation in the docstring string
Returns
strdocstring text
def parse(text: str | None) -> Docstring: (source)

Parse the epydoc-style docstring into its components.

Returns
Docstringparsed docstring
def _clean_str(string: str) -> str | None: (source)

Undocumented