Michael R. Crusoe pushed to branch upstream at Debian Python Team / packages / 
mypy


Commits:
cacd0008 by Michael R. Crusoe at 2026-08-26T08:44:38+02:00
New upstream version 2.3.1
- - - - -


133 changed files:

- CHANGELOG.md
- PKG-INFO
- mypy-requirements.txt
- mypy.egg-info/PKG-INFO
- mypy.egg-info/SOURCES.txt
- mypy.egg-info/requires.txt
- mypy/build.py
- mypy/checker.py
- mypy/checker_shared.py
- mypy/checkexpr.py
- mypy/checkmember.py
- mypy/inspections.py
- mypy/main.py
- mypy/options.py
- mypy/plugins/dataclasses.py
- mypy/server/deps.py
- mypy/server/update.py
- mypy/subtypes.py
- mypy/typeshed/stdlib/VERSIONS
- mypy/typeshed/stdlib/_curses.pyi
- mypy/typeshed/stdlib/ast.pyi
- mypy/typeshed/stdlib/builtins.pyi
- mypy/typeshed/stdlib/fnmatch.pyi
- mypy/typeshed/stdlib/html/__init__.pyi
- mypy/typeshed/stdlib/inspect.pyi
- mypy/typeshed/stdlib/profiling/sampling/gecko_collector.pyi
- mypy/typeshed/stdlib/types.pyi
- mypy/typeshed/stdlib/typing_extensions.pyi
- mypy/typeshed/stubs/librt/librt/strings.pyi
- + mypy/typeshed/stubs/librt/librt/threading.pyi
- mypy/version.py
- mypyc/build.py
- mypyc/codegen/emit.py
- mypyc/codegen/emitclass.py
- mypyc/codegen/emitfunc.py
- mypyc/codegen/emitmodule.py
- mypyc/codegen/literals.py
- mypyc/common.py
- mypyc/doc/differences_from_python.rst
- mypyc/doc/index.rst
- mypyc/doc/librt.rst
- mypyc/doc/librt_strings.rst
- + mypyc/doc/librt_threading.rst
- mypyc/doc/librt_vecs.rst
- mypyc/ir/class_ir.py
- mypyc/ir/deps.py
- mypyc/ir/ops.py
- mypyc/ir/pprint.py
- mypyc/ir/rtypes.py
- mypyc/irbuild/builder.py
- mypyc/irbuild/classdef.py
- mypyc/irbuild/env_class.py
- mypyc/irbuild/expression.py
- mypyc/irbuild/for_helpers.py
- mypyc/irbuild/generator.py
- mypyc/irbuild/ll_builder.py
- mypyc/irbuild/nonlocalcontrol.py
- mypyc/irbuild/prepare.py
- mypyc/irbuild/statement.py
- mypyc/irbuild/vec.py
- mypyc/lib-rt/CPy.h
- mypyc/lib-rt/function_wrapper.c
- mypyc/lib-rt/list_ops.c
- mypyc/lib-rt/mypyc_util.h
- mypyc/lib-rt/pythonsupport.c
- mypyc/lib-rt/pythonsupport.h
- mypyc/lib-rt/setup.py
- mypyc/lib-rt/strings/librt_strings.h
- + mypyc/lib-rt/threading/librt_threading.c
- + mypyc/lib-rt/threading/librt_threading.h
- + mypyc/lib-rt/threading/librt_threading_api.c
- + mypyc/lib-rt/threading/librt_threading_api.h
- mypyc/lib-rt/vecs/vec_t.c
- mypyc/lib-rt/vecs/vec_template.c
- mypyc/lower/registry.py
- + mypyc/lower/vec_ops.py
- + mypyc/primitives/librt_threading_ops.py
- mypyc/primitives/librt_vecs_ops.py
- mypyc/primitives/list_ops.py
- mypyc/primitives/registry.py
- + mypyc/rt_expandtype.py
- mypyc/test-data/exceptions.test
- mypyc/test-data/irbuild-basic.test
- mypyc/test-data/irbuild-classes.test
- + mypyc/test-data/irbuild-final.test
- mypyc/test-data/irbuild-generics.test
- mypyc/test-data/irbuild-glue-methods.test
- mypyc/test-data/irbuild-i64.test
- mypyc/test-data/irbuild-isinstance.test
- mypyc/test-data/irbuild-lists.test
- mypyc/test-data/irbuild-optional.test
- mypyc/test-data/irbuild-set.test
- mypyc/test-data/irbuild-statements.test
- + mypyc/test-data/irbuild-threading.test
- mypyc/test-data/irbuild-tuple.test
- mypyc/test-data/irbuild-vec-i64.test
- mypyc/test-data/irbuild-vec-misc.test
- mypyc/test-data/irbuild-vec-nested.test
- mypyc/test-data/irbuild-vec-t.test
- mypyc/test-data/lowering-int.test
- + mypyc/test-data/lowering-vec.test
- mypyc/test-data/opt-copy-propagation.test
- mypyc/test-data/refcount.test
- mypyc/test-data/run-async.test
- mypyc/test-data/run-classes.test
- mypyc/test-data/run-generators.test
- mypyc/test-data/run-librt-strings.test
- mypyc/test-data/run-lists.test
- mypyc/test-data/run-multimodule.test
- mypyc/test-data/run-python37.test
- + mypyc/test-data/run-threading.test
- mypyc/test/librt_cache.py
- mypyc/test/test_emit.py
- mypyc/test/test_exceptions.py
- + mypyc/test/test_expand_rtype.py
- mypyc/test/test_irbuild.py
- mypyc/test/test_literals.py
- mypyc/test/test_lowering.py
- mypyc/test/test_optimizations.py
- mypyc/test/test_refcount.py
- mypyc/test/test_run.py
- mypyc/transform/spill.py
- pyproject.toml
- test-data/unit/check-async-await.test
- test-data/unit/check-dataclasses.test
- test-data/unit/check-flags.test
- test-data/unit/check-incremental.test
- test-data/unit/check-narrowing.test
- test-data/unit/check-tuples.test
- test-data/unit/check-typevar-unbound.test
- test-data/unit/deps.test
- test-data/unit/fine-grained.test
- test-requirements.txt


The diff was not included because it is too large.


View it on GitLab: 
https://salsa.debian.org/python-team/packages/mypy/-/commit/cacd0008ccf60c9ed08274204bb9b53b6fb5891c

-- 
View it on GitLab: 
https://salsa.debian.org/python-team/packages/mypy/-/commit/cacd0008ccf60c9ed08274204bb9b53b6fb5891c
You're receiving this email because of your account on salsa.debian.org. Manage 
all notifications: https://salsa.debian.org/-/profile/notifications | Help: 
https://salsa.debian.org/help


_______________________________________________
debian-med-commit mailing list
[email protected]
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-med-commit

Reply via email to