Skip to content

Commit

Permalink
Update mypy commit
Browse files Browse the repository at this point in the history
  • Loading branch information
cdce8p committed Oct 1, 2024
1 parent 2cf0bee commit 820ab0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mypy
Submodule mypy updated 76 files
+58 −24 .github/workflows/test.yml
+13 −17 docs/source/additional_features.rst
+33 −15 docs/source/cheat_sheet_py3.rst
+2 −1 docs/source/class_basics.rst
+13 −13 docs/source/command_line.rst
+5 −4 docs/source/common_issues.rst
+3 −3 docs/source/config_file.rst
+1 −3 docs/source/dynamic_typing.rst
+40 −30 docs/source/error_code_list.rst
+2 −2 docs/source/error_code_list2.rst
+5 −4 docs/source/faq.rst
+11 −11 docs/source/final_attrs.rst
+661 −200 docs/source/generics.rst
+11 −7 docs/source/getting_started.rst
+104 −57 docs/source/kinds_of_types.rst
+4 −8 docs/source/literal_types.rst
+5 −3 docs/source/metaclasses.rst
+73 −50 docs/source/more_types.rst
+96 −77 docs/source/protocols.rst
+14 −9 docs/source/runtime_troubles.rst
+4 −6 docs/source/type_inference_and_annotations.rst
+9 −15 docs/source/type_narrowing.rst
+2 −2 docs/source/typed_dict.rst
+1 −0 mypy/applytype.py
+26 −11 mypy/checkexpr.py
+4 −1 mypy/checkmember.py
+12 −2 mypy/checkpattern.py
+3 −1 mypy/copytype.py
+1 −0 mypy/erasetype.py
+3 −0 mypy/errorcodes.py
+17 −2 mypy/expandtype.py
+1 −1 mypy/exprtotype.py
+1 −1 mypy/fastparse.py
+5 −2 mypy/join.py
+11 −1 mypy/meet.py
+19 −5 mypy/messages.py
+1 −1 mypy/nodes.py
+19 −3 mypy/plugins/default.py
+1 −0 mypy/plugins/proper_plugin.py
+6 −7 mypy/semanal.py
+1 −1 mypy/semanal_shared.py
+76 −29 mypy/semanal_typeddict.py
+2 −1 mypy/server/astdiff.py
+42 −0 mypy/subtypes.py
+35 −2 mypy/type_visitor.py
+40 −12 mypy/typeanal.py
+4 −0 mypy/typeops.py
+58 −11 mypy/types.py
+2 −0 mypy/typeshed/stdlib/VERSIONS
+3 −3 mypy/typeshed/stdlib/cProfile.pyi
+3 −3 mypy/typeshed/stdlib/calendar.pyi
+2 −2 mypy/typeshed/stdlib/importlib/abc.pyi
+39 −15 mypy/typeshed/stdlib/importlib/resources/__init__.pyi
+42 −0 mypy/typeshed/stdlib/importlib/resources/_common.pyi
+30 −0 mypy/typeshed/stdlib/importlib/resources/_functional.pyi
+2 −0 mypy/typeshed/stdlib/nt.pyi
+9 −2 mypy/typeshed/stdlib/os/__init__.pyi
+3 −3 mypy/typeshed/stdlib/profile.pyi
+127 −21 mypy/typeshed/stdlib/tkinter/__init__.pyi
+8 −8 mypy/typeshed/stdlib/typing.pyi
+1 −1 mypy/typeshed/stdlib/typing_extensions.pyi
+5 −1 mypyc/test-data/run-dicts.test
+1 −1 test-data/unit/check-expressions.test
+14 −0 test-data/unit/check-functions.test
+24 −0 test-data/unit/check-isinstance.test
+17 −1 test-data/unit/check-narrowing.test
+5 −5 test-data/unit/check-optional.test
+120 −0 test-data/unit/check-parameter-specification.test
+26 −0 test-data/unit/check-python310.test
+57 −1 test-data/unit/check-python312.test
+4 −4 test-data/unit/check-python38.test
+337 −1 test-data/unit/check-typeddict.test
+28 −0 test-data/unit/fine-grained.test
+5 −0 test-data/unit/fixtures/typing-typeddict.pyi
+1 −0 test-data/unit/lib-stub/typing_extensions.pyi
+20 −0 test-data/unit/pythoneval.test

0 comments on commit 820ab0c

Please sign in to comment.