You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
795 B
31 lines
795 B
1 year ago
|
"""
|
||
|
This type stub file was generated by pyright.
|
||
|
"""
|
||
|
|
||
|
class DocstringComponents:
|
||
|
regexp = ...
|
||
|
def __init__(self, comp_dict, strip_whitespace=...) -> None:
|
||
|
"""Read entries from a dict, optionally stripping outer whitespace."""
|
||
|
...
|
||
|
|
||
|
def __getattr__(self, attr): # -> Any:
|
||
|
"""Provided dot access to entries."""
|
||
|
...
|
||
|
|
||
|
@classmethod
|
||
|
def from_nested_components(cls, **kwargs): # -> Self@DocstringComponents:
|
||
|
"""Add multiple sub-sets of components."""
|
||
|
...
|
||
|
|
||
|
@classmethod
|
||
|
def from_function_params(cls, func): # -> Self@DocstringComponents:
|
||
|
"""Use the numpydoc parser to extract components from existing func."""
|
||
|
...
|
||
|
|
||
|
|
||
|
|
||
|
_core_params = ...
|
||
|
_core_returns = ...
|
||
|
_seealso_blurbs = ...
|
||
|
_core_docs = ...
|