Esempio n. 1
0
    def __init__(self, document: docutils.nodes.document, fields: Sequence[Field]):
        self._document = document
        """A ReStructuredText document, encoding the docstring."""

        document.reporter = OptimizedReporter(
            document.reporter.source, 'SEVERE', 'SEVERE', '')

        ParsedDocstring.__init__(self, fields)
Esempio n. 2
0
    def __init__(self, document, fields):
        """
        @type document: C{docutils.nodes.document}
        """
        self._document = document

        document.reporter = OptimizedReporter(document.reporter.source,
                                              'SEVERE', 'SEVERE', '')

        ParsedDocstring.__init__(self, fields)
Esempio n. 3
0
 def __init__(self, text):
     ParsedDocstring.__init__(self, ())
     self._text = text
Esempio n. 4
0
 def __init__(self, annotation: ast.expr) -> None:
     ParsedDocstring.__init__(self, ())
     self.annotation = annotation
Esempio n. 5
0
 def __init__(self, annotation):
     ParsedDocstring.__init__(self, ())
     self.annotation = annotation
Esempio n. 6
0
def to_html(
    parsed_docstring: ParsedDocstring,
    linker: DocstringLinker = NotFoundLinker()
) -> str:
    return flatten(parsed_docstring.to_stan(linker))