Skip to content

Commit

Permalink
Update mypy commit
Browse files Browse the repository at this point in the history
  • Loading branch information
cdce8p committed Mar 27, 2024
1 parent 545c61b commit 7148675
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mypy
Submodule mypy updated 55 files
+1 −1 .pre-commit-config.yaml
+1 −1 docs/source/running_mypy.rst
+55 −46 misc/sync-typeshed.py
+182 −0 misc/typeshed_patches/0001-Remove-use-of-LiteralString-in-builtins-13743.patch
+36 −0 misc/typeshed_patches/0001-Revert-sum-literal-integer-change-13961.patch
+32 −0 misc/typeshed_patches/0001-Revert-typeshed-ctypes-change.patch
+3 −2 mypy/checker.py
+5 −12 mypy/checkexpr.py
+1 −3 mypy/test/data.py
+1 −1 mypy/test/helpers.py
+8 −0 mypyc/ir/ops.py
+4 −1 mypyc/ir/pprint.py
+3 −6 mypyc/irbuild/ast_helpers.py
+0 −3 mypyc/irbuild/builder.py
+2 −9 mypyc/irbuild/expression.py
+2 −3 mypyc/irbuild/function.py
+15 −133 mypyc/irbuild/ll_builder.py
+104 −6 mypyc/lower/int_ops.py
+45 −0 mypyc/lower/list_ops.py
+12 −0 mypyc/lower/misc_ops.py
+3 −3 mypyc/lower/registry.py
+4 −28 mypyc/primitives/int_ops.py
+10 −0 mypyc/primitives/list_ops.py
+28 −2 mypyc/primitives/misc_ops.py
+35 −0 mypyc/primitives/registry.py
+49 −156 mypyc/test-data/analysis.test
+22 −36 mypyc/test-data/exceptions.test
+4 −6 mypyc/test-data/irbuild-any.test
+284 −545 mypyc/test-data/irbuild-basic.test
+18 −57 mypyc/test-data/irbuild-bool.test
+5 −8 mypyc/test-data/irbuild-bytes.test
+12 −13 mypyc/test-data/irbuild-classes.test
+8 −9 mypyc/test-data/irbuild-dict.test
+6 −14 mypyc/test-data/irbuild-dunders.test
+3 −4 mypyc/test-data/irbuild-generics.test
+79 −99 mypyc/test-data/irbuild-i64.test
+12 −39 mypyc/test-data/irbuild-int.test
+161 −195 mypyc/test-data/irbuild-lists.test
+110 −142 mypyc/test-data/irbuild-set.test
+1 −1 mypyc/test-data/irbuild-singledispatch.test
+158 −247 mypyc/test-data/irbuild-statements.test
+11 −13 mypyc/test-data/irbuild-str.test
+95 −118 mypyc/test-data/irbuild-tuple.test
+262 −11 mypyc/test-data/lowering-int.test
+33 −0 mypyc/test-data/lowering-list.test
+46 −86 mypyc/test-data/refcount.test
+5 −4 mypyc/test-data/run-generators.test
+3 −1 mypyc/test/test_lowering.py
+1 −1 pyproject.toml
+1 −0 setup.py
+46 −1 test-data/unit/check-statements.test
+28 −4 test-data/unit/check-typeddict.test
+2 −0 test-data/unit/lib-stub/typing_extensions.pyi
+2 −2 test-requirements.in
+3 −3 test-requirements.txt

0 comments on commit 7148675

Please sign in to comment.