]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commit
✨ Improve type annotations, add support for mypy --strict, internally and for externa...
authorSebastián Ramírez <tiangolo@gmail.com>
Sun, 20 Dec 2020 18:50:00 +0000 (19:50 +0100)
committerGitHub <noreply@github.com>
Sun, 20 Dec 2020 18:50:00 +0000 (19:50 +0100)
commitfdb6c9ccc504f90afd0fbcec53f3ea0bfebc261a
tree5f78cf99afc1d0259950128d8a36bf871b1dfa1c
parent4fdcdf341c106d345e6d0c349091cfb208f9c792
✨ Improve type annotations, add support for mypy --strict, internally and for external packages (#2547)
43 files changed:
docs_src/openapi_callbacks/tutorial001.py
fastapi/__init__.py
fastapi/applications.py
fastapi/background.py
fastapi/concurrency.py
fastapi/datastructures.py
fastapi/dependencies/models.py
fastapi/dependencies/utils.py
fastapi/encoders.py
fastapi/middleware/__init__.py
fastapi/middleware/cors.py
fastapi/middleware/gzip.py
fastapi/middleware/httpsredirect.py
fastapi/middleware/trustedhost.py
fastapi/middleware/wsgi.py
fastapi/openapi/docs.py
fastapi/openapi/models.py
fastapi/openapi/utils.py
fastapi/param_functions.py
fastapi/params.py
fastapi/responses.py
fastapi/routing.py
fastapi/security/__init__.py
fastapi/security/oauth2.py
fastapi/staticfiles.py
fastapi/templating.py
fastapi/testclient.py
fastapi/types.py [new file with mode: 0644]
fastapi/utils.py
fastapi/websockets.py
mypy.ini
pyproject.toml
tests/test_custom_route_class.py
tests/test_get_request_body.py
tests/test_include_router_defaults_overrides.py
tests/test_inherited_custom_class.py
tests/test_jsonable_encoder.py
tests/test_local_docs.py
tests/test_multi_body_errors.py
tests/test_param_class.py
tests/test_params_repr.py
tests/test_starlette_urlconvertors.py
tests/test_sub_callbacks.py