(obj, attr_name, *defargs)
| 169 | attrs = [] |
| 170 | |
| 171 | def _special_getattr(obj, attr_name, *defargs): |
| 172 | if attr_name in attrs: |
| 173 | getattr_spy.append((obj, attr_name)) |
| 174 | return None |
| 175 | return getattr(obj, attr_name, *defargs) |
| 176 | |
| 177 | # See Sphinx.add_autodoc_attrgetter() |
| 178 | autodoc_attrgetters = {type: _special_getattr} |
nothing calls this directly
no test coverage detected
searching dependent graphs…