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 19, 2024
1 parent 9b9a82a commit e33ea30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mypy
Submodule mypy updated 49 files
+27 −10 .github/workflows/mypy_primer.yml
+1 −1 .github/workflows/mypy_primer_comment.yml
+16 −1 mypy/checker.py
+12 −2 mypy/checkexpr.py
+0 −8 mypy/constraints.py
+1 −2 mypy/dmypy_util.py
+11 −11 mypy/fastparse.py
+7 −6 mypy/gclogger.py
+1 −1 mypy/main.py
+0 −5 mypy/message_registry.py
+7 −3 mypy/nodes.py
+79 −53 mypy/semanal.py
+1 −1 mypy/server/deps.py
+1 −2 mypy/server/update.py
+2 −0 mypy/strconv.py
+4 −0 mypy/test/testparse.py
+5 −3 mypy/types.py
+2 −2 mypy/typeshed/stdlib/_asyncio.pyi
+2 −1 mypy/typeshed/stdlib/_csv.pyi
+4 −1 mypy/typeshed/stdlib/builtins.pyi
+9 −2 mypy/typeshed/stdlib/csv.pyi
+13 −3 mypy/typeshed/stdlib/posixpath.pyi
+2 −1 mypy/typeshed/stdlib/unittest/runner.pyi
+1 −1 mypy/util.py
+3 −2 mypyc/__main__.py
+5 −0 mypyc/build.py
+1 −2 mypyc/codegen/emitclass.py
+1 −1 mypyc/external/googletest/src/gtest.cc
+34 −21 mypyc/irbuild/classdef.py
+8 −6 mypyc/irbuild/function.py
+42 −11 mypyc/irbuild/ll_builder.py
+9 −6 mypyc/irbuild/mapper.py
+49 −19 mypyc/irbuild/prepare.py
+8 −0 mypyc/options.py
+9 −0 mypyc/test-data/run-dunders-special.test
+28 −6 mypyc/test-data/run-dunders.test
+15 −1 mypyc/test/test_run.py
+1 −0 setup.py
+166 −13 test-data/unit/check-flags.test
+254 −8 test-data/unit/check-python313.test
+16 −0 test-data/unit/check-selftype.test
+9 −0 test-data/unit/check-typeguard.test
+9 −0 test-data/unit/check-typeis.test
+16 −5 test-data/unit/check-typevar-defaults.test
+3 −272 test-data/unit/cmdline.test
+7 −0 test-data/unit/parse-errors.test
+80 −0 test-data/unit/parse-python313.test
+68 −109 test-data/unit/pythoneval.test
+7 −4 tox.ini

0 comments on commit e33ea30

Please sign in to comment.