| 20 | |
| 21 | |
| 22 | class FakeEvents(EventManager): |
| 23 | def __init__(self) -> None: |
| 24 | super().__init__(SimpleNamespace(pdb=False)) # type: ignore[arg-type] |
| 25 | |
| 26 | self.add('autodoc-before-process-signature') |
| 27 | self.add('autodoc-process-docstring') |
| 28 | self.add('autodoc-process-signature') |
| 29 | self.add('autodoc-skip-member') |
| 30 | self.add('autodoc-process-bases') |
| 31 | self.add('object-description-transform') |
| 32 | |
| 33 | def connect( |
| 34 | self, name: str, callback: Callable[..., Any], priority: int = 500 |
| 35 | ) -> int: |
| 36 | return super().connect(name, callback, priority) |
| 37 | |
| 38 | |
| 39 | def do_autodoc( |
no outgoing calls
searching dependent graphs…