py-mypy: updated to 0.971
0.971 Speed up accessing always defined native attributes Reduce the overhead of reference counting Fix Python 3.11 C API errors Generate smaller code for casts and some implicit type coercions Optimize calling Python objects with zero or one arguments Replace integer floor division by a power of two with a shift Add primitives for faster access of float and tuple type objects Fix compile error related to operator assignment in a generator function
This commit is contained in:
parent
6e51b6189e
commit
d96c211965
3 changed files with 24 additions and 7 deletions
|
@ -1,6 +1,6 @@
|
|||
# $NetBSD: Makefile,v 1.32 2022/07/01 17:13:49 adam Exp $
|
||||
# $NetBSD: Makefile,v 1.33 2022/08/18 07:33:45 adam Exp $
|
||||
|
||||
DISTNAME= mypy-0.961
|
||||
DISTNAME= mypy-0.971
|
||||
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
||||
CATEGORIES= lang python
|
||||
MASTER_SITES= ${MASTER_SITE_PYPI:=m/mypy/}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.21 2022/05/02 08:19:25 adam Exp $
|
||||
@comment $NetBSD: PLIST,v 1.22 2022/08/18 07:33:45 adam Exp $
|
||||
bin/dmypy-${PYVERSSUFFIX}
|
||||
bin/mypy-${PYVERSSUFFIX}
|
||||
bin/mypyc-${PYVERSSUFFIX}
|
||||
|
@ -58,6 +58,9 @@ ${PYSITELIB}/mypy/config_parser.pyo
|
|||
${PYSITELIB}/mypy/constraints.py
|
||||
${PYSITELIB}/mypy/constraints.pyc
|
||||
${PYSITELIB}/mypy/constraints.pyo
|
||||
${PYSITELIB}/mypy/copytype.py
|
||||
${PYSITELIB}/mypy/copytype.pyc
|
||||
${PYSITELIB}/mypy/copytype.pyo
|
||||
${PYSITELIB}/mypy/defaults.py
|
||||
${PYSITELIB}/mypy/defaults.pyc
|
||||
${PYSITELIB}/mypy/defaults.pyo
|
||||
|
@ -968,6 +971,7 @@ ${PYSITELIB}/mypy/typeshed/stdlib/asyncio/subprocess.pyi
|
|||
${PYSITELIB}/mypy/typeshed/stdlib/asyncio/taskgroups.pyi
|
||||
${PYSITELIB}/mypy/typeshed/stdlib/asyncio/tasks.pyi
|
||||
${PYSITELIB}/mypy/typeshed/stdlib/asyncio/threads.pyi
|
||||
${PYSITELIB}/mypy/typeshed/stdlib/asyncio/timeouts.pyi
|
||||
${PYSITELIB}/mypy/typeshed/stdlib/asyncio/transports.pyi
|
||||
${PYSITELIB}/mypy/typeshed/stdlib/asyncio/trsock.pyi
|
||||
${PYSITELIB}/mypy/typeshed/stdlib/asyncio/unix_events.pyi
|
||||
|
@ -1415,6 +1419,9 @@ ${PYSITELIB}/mypyc/__main__.pyo
|
|||
${PYSITELIB}/mypyc/analysis/__init__.py
|
||||
${PYSITELIB}/mypyc/analysis/__init__.pyc
|
||||
${PYSITELIB}/mypyc/analysis/__init__.pyo
|
||||
${PYSITELIB}/mypyc/analysis/attrdefined.py
|
||||
${PYSITELIB}/mypyc/analysis/attrdefined.pyc
|
||||
${PYSITELIB}/mypyc/analysis/attrdefined.pyo
|
||||
${PYSITELIB}/mypyc/analysis/blockfreq.py
|
||||
${PYSITELIB}/mypyc/analysis/blockfreq.pyc
|
||||
${PYSITELIB}/mypyc/analysis/blockfreq.pyo
|
||||
|
@ -1424,6 +1431,9 @@ ${PYSITELIB}/mypyc/analysis/dataflow.pyo
|
|||
${PYSITELIB}/mypyc/analysis/ircheck.py
|
||||
${PYSITELIB}/mypyc/analysis/ircheck.pyc
|
||||
${PYSITELIB}/mypyc/analysis/ircheck.pyo
|
||||
${PYSITELIB}/mypyc/analysis/selfleaks.py
|
||||
${PYSITELIB}/mypyc/analysis/selfleaks.pyc
|
||||
${PYSITELIB}/mypyc/analysis/selfleaks.pyo
|
||||
${PYSITELIB}/mypyc/build.py
|
||||
${PYSITELIB}/mypyc/build.pyc
|
||||
${PYSITELIB}/mypyc/build.pyo
|
||||
|
@ -1550,6 +1560,9 @@ ${PYSITELIB}/mypyc/ir/rtypes.pyo
|
|||
${PYSITELIB}/mypyc/irbuild/__init__.py
|
||||
${PYSITELIB}/mypyc/irbuild/__init__.pyc
|
||||
${PYSITELIB}/mypyc/irbuild/__init__.pyo
|
||||
${PYSITELIB}/mypyc/irbuild/ast_helpers.py
|
||||
${PYSITELIB}/mypyc/irbuild/ast_helpers.pyc
|
||||
${PYSITELIB}/mypyc/irbuild/ast_helpers.pyo
|
||||
${PYSITELIB}/mypyc/irbuild/builder.py
|
||||
${PYSITELIB}/mypyc/irbuild/builder.pyc
|
||||
${PYSITELIB}/mypyc/irbuild/builder.pyo
|
||||
|
@ -1695,6 +1708,7 @@ ${PYSITELIB}/mypyc/sametype.pyo
|
|||
${PYSITELIB}/mypyc/subtype.py
|
||||
${PYSITELIB}/mypyc/subtype.pyc
|
||||
${PYSITELIB}/mypyc/subtype.pyo
|
||||
${PYSITELIB}/mypyc/test-data/alwaysdefined.test
|
||||
${PYSITELIB}/mypyc/test-data/analysis.test
|
||||
${PYSITELIB}/mypyc/test-data/commandline.test
|
||||
${PYSITELIB}/mypyc/test-data/driver/driver.py
|
||||
|
@ -1764,6 +1778,9 @@ ${PYSITELIB}/mypyc/test/__init__.pyo
|
|||
${PYSITELIB}/mypyc/test/config.py
|
||||
${PYSITELIB}/mypyc/test/config.pyc
|
||||
${PYSITELIB}/mypyc/test/config.pyo
|
||||
${PYSITELIB}/mypyc/test/test_alwaysdefined.py
|
||||
${PYSITELIB}/mypyc/test/test_alwaysdefined.pyc
|
||||
${PYSITELIB}/mypyc/test/test_alwaysdefined.pyo
|
||||
${PYSITELIB}/mypyc/test/test_analysis.py
|
||||
${PYSITELIB}/mypyc/test/test_analysis.pyc
|
||||
${PYSITELIB}/mypyc/test/test_analysis.pyo
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.30 2022/07/01 17:13:49 adam Exp $
|
||||
$NetBSD: distinfo,v 1.31 2022/08/18 07:33:45 adam Exp $
|
||||
|
||||
BLAKE2s (mypy-0.961.tar.gz) = d1300c10b78cef55cc76de15bcba30c5f8b29d2ce0d022ee3d429ecde575a57d
|
||||
SHA512 (mypy-0.961.tar.gz) = 1056cf3c436f133c316604e837a9705fe12c4f7fa25ea4de396d8a6723b7a76be7ea04ceb6bcd05d62f013accb702601deb9ed8ea94bd0cdbb9cde5992178556
|
||||
Size (mypy-0.961.tar.gz) = 2715861 bytes
|
||||
BLAKE2s (mypy-0.971.tar.gz) = 36e94e2e656eaa090bd11a81e9fc349b71257caf85e83ba949f118c582f9eb77
|
||||
SHA512 (mypy-0.971.tar.gz) = 5f206f6682f659f461e5927f20a6786a94d8246441c0c480b6eeadb74e9517a2ece1780e91f18e6f23cd658cc4c9350f337e9f7d3cf26507a1debbca94a4e112
|
||||
Size (mypy-0.971.tar.gz) = 2757982 bytes
|
||||
|
|
Loading…
Reference in a new issue