Searched refs:SectionBase (Results 1 – 4 of 4) sorted by relevance
| /petsc/lib/petsc/bin/maint/petsclinter/petsclinter/ |
| H A D | _typing.py | 115 DescribableItem, SectionBase, Synopsis, ParameterList, Prose, VerbatimBlock, InlineList, 122 SectionImpl = TypeVar('SectionImpl', bound=SectionBase)
|
| /petsc/lib/petsc/bin/maint/petsclinter/petsclinter/classes/docs/ |
| H A D | _doc_str.py | 25 from ._doc_section_base import DocBase, SectionBase 107 _sections: dict[str, SectionBase] 134 def __getattr__(self, attr: str) -> SectionBase: 147 def __iter__(self) -> Iterator[SectionBase]: 188 def find(self, heading: str, cache_result: bool = True, strict: bool = False) -> SectionBase: 303 if not isinstance(section, SectionBase): 379 …uzzy_find_section(self, line: str, strict: bool = False, **kwargs) -> tuple[str, str, SectionBase]: 765 def guess_heading(self, line: str, **kwargs) -> tuple[str, str, SectionBase]: 1100 assert isinstance(section_guess, SectionBase)
|
| H A D | _doc_section_base.py | 203 class SectionBase(DocBase): class 630 class Synopsis(SectionBase): 837 class ParameterList(SectionBase): 1020 class Prose(SectionBase): 1067 class VerbatimBlock(SectionBase): 1110 class InlineList(SectionBase):
|
| H A D | _doc_section.py | 20 from ._doc_section_base import SectionBase, Synopsis, ParameterList, Prose, VerbatimBlock, InlineLi… 30 class DefaultSection(SectionBase):
|