An open API service indexing awesome lists of open source software.

https://github.com/srittau/typeshed-completion

Completion status of Python's typeshed
https://github.com/srittau/typeshed-completion

python python3 types typeshed typing

Last synced: about 2 months ago
JSON representation

Completion status of Python's typeshed

Awesome Lists containing this project

README

          

# typeshed-completion

This repository is supposed to document how complete the Python stubs of
[typeshed](https://github.com/python/typeshed) are in comparison to Python's
standard library.

## Find problems

The `find-problems.py` script can be used to spot potential problems
in typeshed. By default it will check the modules marked as *unchecked*
in `COMPLETION.md`. It can also be called with a single stub file or a
directory of stub files as argument.

The following flags are supported:

* `-a` - Warn about `Any` annotations.
* `-c` - Warn about type comments.
* `-M` - Suppress warnings about missing annotations.

`find-problems.py` requires Python 3.8 or higher.