| 2333 | |
| 2334 | |
| 2335 | class _Arguments: |
| 2336 | modules: list[str] |
| 2337 | concise: bool |
| 2338 | ignore_missing_stub: bool |
| 2339 | ignore_positional_only: bool |
| 2340 | ignore_disjoint_bases: bool |
| 2341 | strict_type_check_only: bool |
| 2342 | allowlist: list[str] |
| 2343 | generate_allowlist: bool |
| 2344 | ignore_unused_allowlist: bool |
| 2345 | mypy_config_file: str | None |
| 2346 | custom_typeshed_dir: str | None |
| 2347 | check_typeshed: bool |
| 2348 | version: str |
| 2349 | show_traceback: bool |
| 2350 | pdb: bool |
| 2351 | |
| 2352 | |
| 2353 | # typeshed added a stub for __main__, but that causes stubtest to check itself |
no outgoing calls
searching dependent graphs…