Commit Graph

6 Commits

Author SHA1 Message Date
caa38dad45 fix broken type annotation imports being ignored
If an annotation could not be resolved, it's classified as a "missing
import" and our configuration ignored it:

```
Skipping analyzing "mesonbuild.backends": module is installed, but missing library stubs or py.typed marker
```

As far as mypy is concerned, this library may or may not exist, but it
doesn't have any typing information at all (may need to be installed
first).

We ignored this because of our docs/ and tools/ thirdparty dependencies,
but we really should not. It is trivial to install them, and then
enforce that this "just works".

By enforcing it, we also make sure typos get caught.
2023-11-26 17:12:52 -05:00
f192ecd1ef docs: refman: Add arg_flattening support 2022-04-07 17:16:26 -04:00
8d64853229 doc: fix regression that deleted all methods from the reference manual
Regressed in commit bfb12222c3.

This needs to iterate over all methods, process them, and add them to a
list. Instead, it deleted all methods, processed all remaining methods,
and appended them to the in-use iterator.

Use a second list, instead.

Fixes #9922
2022-01-31 18:21:31 -05:00
bd1c464f59 print warning when using fastyaml loader 2022-01-31 18:40:40 +01:00
bfb12222c3 add fastyaml loader 2022-01-31 18:40:40 +01:00
ad65a699f9 docs: Initial reference manual generator 2021-10-03 11:46:34 +02:00