Append ``_docstrings_list`` with a docstring for `name`. Parameters ---------- name : str The name of the object. value : str A string-representation of the object. doc : str The docstring of the object.
(name: str, value: str, doc: str)
| 9 | |
| 10 | |
| 11 | def add_newdoc(name: str, value: str, doc: str) -> None: |
| 12 | """Append ``_docstrings_list`` with a docstring for `name`. |
| 13 | |
| 14 | Parameters |
| 15 | ---------- |
| 16 | name : str |
| 17 | The name of the object. |
| 18 | value : str |
| 19 | A string-representation of the object. |
| 20 | doc : str |
| 21 | The docstring of the object. |
| 22 | |
| 23 | """ |
| 24 | _docstrings_list.append((name, value, doc)) |
| 25 | |
| 26 | |
| 27 | def _parse_docstrings() -> str: |