Skip to content

Commit

Permalink
Update mypy commit
Browse files Browse the repository at this point in the history
  • Loading branch information
cdce8p committed May 17, 2024
1 parent 93a5a20 commit 52a6b99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mypy
Submodule mypy updated 47 files
+12 −10 .github/workflows/test.yml
+3 −1 misc/sync-typeshed.py
+6 −5 mypy/build.py
+8 −3 mypy/checker.py
+3 −0 mypy/dmypy_server.py
+37 −0 mypy/error_formatter.py
+68 −7 mypy/errors.py
+78 −28 mypy/fastparse.py
+2 −2 mypy/join.py
+15 −2 mypy/main.py
+53 −1 mypy/nodes.py
+5 −2 mypy/options.py
+5 −0 mypy/partially_defined.py
+1 −1 mypy/plugins/default.py
+172 −2 mypy/semanal.py
+28 −0 mypy/strconv.py
+80 −3 mypy/subtypes.py
+58 −0 mypy/test/testoutput.py
+4 −0 mypy/test/testparse.py
+6 −0 mypy/traverser.py
+18 −0 mypy/typeshed/stdlib/_typeshed/importlib.pyi
+160 −70 mypy/typeshed/stdlib/ast.pyi
+4 −4 mypy/typeshed/stdlib/builtins.pyi
+9 −2 mypy/typeshed/stdlib/dbm/__init__.pyi
+7 −1 mypy/typeshed/stdlib/dbm/dumb.pyi
+5 −2 mypy/typeshed/stdlib/dbm/gnu.pyi
+5 −2 mypy/typeshed/stdlib/dbm/ndbm.pyi
+2 −2 mypy/typeshed/stdlib/importlib/abc.pyi
+3 −2 mypy/typeshed/stdlib/importlib/util.pyi
+1 −1 mypy/typeshed/stdlib/logging/__init__.pyi
+6 −2 mypy/typeshed/stdlib/pathlib.pyi
+6 −6 mypy/typeshed/stdlib/pkgutil.pyi
+15 −2 mypy/typeshed/stdlib/shelve.pyi
+13 −0 mypy/typeshed/stdlib/socket.pyi
+4 −9 mypy/typeshed/stdlib/sys/__init__.pyi
+5 −1 mypy/typeshed/stdlib/tempfile.pyi
+12 −17 mypy/typeshed/stdlib/types.pyi
+23 −20 mypy/typeshed/stdlib/typing.pyi
+8 −2 mypy/typestate.py
+8 −1 mypy/util.py
+7 −0 mypy/visitor.py
+4 −0 mypyc/irbuild/visitor.py
+25 −0 test-data/unit/check-narrowing.test
+876 −0 test-data/unit/check-python312.test
+44 −0 test-data/unit/outputjson.test
+87 −0 test-data/unit/parse-python312.test
+21 −0 test-data/unit/pythoneval.test

0 comments on commit 52a6b99

Please sign in to comment.