|
71 | 71 | ("py:class", "'object'"), |
72 | 72 | ("py:class", "'id'"), |
73 | 73 | ("py:class", "typing_extensions.Literal"), |
| 74 | + # Doesn't work even with asyncio intersphinx mapping |
| 75 | + ("py:class", "asyncio.events.AbstractEventLoop"), |
| 76 | + ("py:class", "asyncio.streams.StreamReader"), |
| 77 | + ("py:class", "asyncio.streams.StreamWriter"), |
| 78 | + # Annoying error: |
| 79 | + # docstring of collections.abc.Callable:1: WARNING: |
| 80 | + # 'any' reference target not found: self [ref.any] |
| 81 | + ("any", "self"), |
| 82 | + # p4p doesn't have intersphinx mapping |
| 83 | + ("py:class", "p4p.server.StaticProvider"), |
| 84 | + ("py:class", "p4p.nt.scalar.NTScalar"), |
| 85 | + ("py:class", "p4p.nt.enum.NTEnum"), |
| 86 | + ("py:class", "p4p.nt.ndarray.NTNDArray"), |
| 87 | + ("py:class", "p4p.nt.NTTable"), |
| 88 | + # Problems in FastCS itself |
| 89 | + ("py:class", "fastcs.transport.epics.pva.pvi_tree._PviSignalInfo"), |
| 90 | + # TypeVar without docstrings still give warnings |
| 91 | + ("py:class", "fastcs.datatypes.T_Numerical"), |
| 92 | + ("py:class", "strawberry.schema.schema.Schema"), |
74 | 93 | ] |
75 | | -nitpick_ignore_regex = [ |
76 | | - ("py:class", "fastcs.*.T"), |
77 | | -] |
| 94 | +nitpick_ignore_regex = [("py:class", "fastcs.*.T")] |
78 | 95 |
|
79 | 96 | # Both the class’ and the __init__ method’s docstring are concatenated and |
80 | 97 | # inserted into the main body of the autoclass directive |
|
112 | 129 |
|
113 | 130 | # This means you can link things like `str` and `asyncio` to the relevant |
114 | 131 | # docs in the python documentation. |
115 | | -intersphinx_mapping = {"python": ("https://docs.python.org/3/", None)} |
| 132 | +intersphinx_mapping = { |
| 133 | + "python": ("https://docs.python.org/3/", None), |
| 134 | +} |
116 | 135 |
|
117 | 136 | # A dictionary of graphviz graph attributes for inheritance diagrams. |
118 | 137 | inheritance_graph_attrs = {"rankdir": "TB"} |
|
0 commit comments