[med-svn] [mypy] 06/06: Merge tag 'upstream/0.480.dev0'
Michael Crusoe
misterc-guest at moszumanska.debian.org
Thu Feb 2 08:22:58 UTC 2017
This is an automated email from the git hooks/post-receive script.
misterc-guest pushed a commit to branch master
in repository mypy.
commit 28fa01a74eb3f63b8cac271588902167eab69ac2
Merge: cea0e78 111e209
Author: Michael R. Crusoe <michael.crusoe at gmail.com>
Date: Thu Feb 2 00:20:41 2017 -0800
Merge tag 'upstream/0.480.dev0'
Upstream version 0.480.dev0
.gitignore | 29 +
.gitmodules | 3 +
.travis.yml | 20 +
CONTRIBUTING.md | 152 +
CREDITS | 101 +
LICENSE | 228 ++
PKG-INFO | 2 +-
README.md | 310 ++
appveyor.yml | 32 +
build-requirements.txt | 2 +
conftest.py | 3 +
docs/Makefile | 177 +
docs/README.md | 49 +
docs/make.bat | 242 ++
docs/requirements-docs.txt | 2 +
docs/source/additional_features.rst | 9 +
docs/source/basics.rst | 194 ++
docs/source/builtin_types.rst | 37 +
docs/source/casts.rst | 39 +
docs/source/cheat_sheet.rst | 241 ++
docs/source/cheat_sheet_py3.rst | 288 ++
docs/source/class_basics.rst | 157 +
docs/source/command_line.rst | 413 +++
docs/source/common_issues.rst | 386 +++
docs/source/conf.py | 268 ++
docs/source/config_file.rst | 184 ++
docs/source/duck_type_compatibility.rst | 40 +
docs/source/dynamic_typing.rst | 86 +
docs/source/faq.rst | 270 ++
docs/source/function_overloading.rst | 60 +
docs/source/generics.rst | 390 +++
docs/source/getting_started.rst | 24 +
docs/source/index.rst | 42 +
docs/source/introduction.rst | 30 +
docs/source/kinds_of_types.rst | 1002 ++++++
docs/source/python2.rst | 136 +
docs/source/python36.rst | 100 +
docs/source/revision_history.rst | 176 +
docs/source/supported_python_features.rst | 20 +
docs/source/type_inference_and_annotations.rst | 172 +
extensions/README.md | 6 +
extensions/mypy_extensions.py | 97 +
extensions/setup.py | 44 +
lib-typing/2.7/setup.py | 46 +
lib-typing/2.7/test_typing.py | 1629 ++++++++++
lib-typing/2.7/typing.py | 2016 ++++++++++++
lib-typing/3.2/test_typing.py | 2063 ++++++++++++
lib-typing/3.2/typing.py | 2160 +++++++++++++
misc/actions_stubs.py | 111 +
misc/analyze_cache.py | 189 ++
misc/async_matrix.py | 120 +
misc/fix_annotate.py | 219 ++
misc/incremental_checker.py | 356 ++
misc/macs.el | 22 +
misc/perf_checker.py | 93 +
misc/remove-eol-whitespace.sh | 8 +
misc/test_case_to_actual.py | 71 +
misc/touch_checker.py | 151 +
misc/variadics.py | 54 +
mypy.egg-info/PKG-INFO | 2 +-
mypy.egg-info/SOURCES.txt | 416 ++-
mypy/api.py | 32 +-
mypy/build.py | 8 +-
mypy/checker.py | 400 ++-
mypy/checkexpr.py | 179 +-
mypy/checkmember.py | 27 +-
mypy/constraints.py | 62 +-
mypy/errors.py | 2 +-
mypy/expandtype.py | 34 +-
mypy/fastparse.py | 213 +-
mypy/fastparse2.py | 271 +-
mypy/main.py | 126 +-
mypy/messages.py | 10 +-
mypy/myunit/__init__.py | 380 +++
mypy/myunit/__main__.py | 18 +
mypy/nodes.py | 102 +-
mypy/options.py | 6 +-
mypy/sametypes.py | 13 +-
mypy/semanal.py | 98 +-
mypy/strconv.py | 12 +-
.../2/xml/__init__.pyi => mypy/test/__init__.py | 0
.../xml/etree/__init__.pyi => mypy/test/collect.py | 0
mypy/test/config.py | 19 +
mypy/test/data.py | 483 +++
mypy/test/helpers.py | 285 ++
mypy/test/testargs.py | 18 +
mypy/test/testcheck.py | 332 ++
mypy/test/testcmdline.py | 104 +
mypy/test/testextensions.py | 125 +
mypy/test/testgraph.py | 69 +
mypy/test/testinfer.py | 223 ++
mypy/test/testlex.py | 466 +++
mypy/test/testmoduleinfo.py | 14 +
mypy/test/testparse.py | 79 +
mypy/test/testpythoneval.py | 135 +
mypy/test/testreports.py | 40 +
mypy/test/testsemanal.py | 224 ++
mypy/test/testsolve.py | 156 +
mypy/test/teststubgen.py | 186 ++
mypy/test/testsubtypes.py | 208 ++
mypy/test/testtransform.py | 85 +
mypy/test/testtypegen.py | 128 +
mypy/test/testtypes.py | 847 +++++
.../3.2/xml/__init__.pyi => mypy/test/update.py | 0
mypy/traverser.py | 2 +
mypy/treetransform.py | 8 +-
mypy/typefixture.py | 18 +-
mypy/types.py | 7 +-
mypy/typevars.py | 24 +
mypy/version.py | 2 +-
mypy/visitor.py | 171 +-
mypy_self_check.ini | 8 +
mypy_strict_optional.ini | 5 +
pinfer/.gitignore | 3 +
pinfer/LICENSE | 27 +
pinfer/README | 47 +
.../xml/etree/__init__.pyi => pinfer/__init__.py | 0
pinfer/inspect3.py | 122 +
pinfer/p.py | 83 +
pinfer/pinfer.py | 686 ++++
pinfer/test_pinfer.py | 302 ++
pinfer/test_pinfer3.py | 31 +
pinfer/unparse.py | 610 ++++
pinfer/unparse3.py | 610 ++++
pytest.ini | 14 +
runtests.py | 428 +++
setup.cfg | 4 +-
test-data/.flake8 | 21 +
test-data/samples/bottles.py | 13 +
test-data/samples/class.py | 18 +
test-data/samples/cmdline.py | 8 +
test-data/samples/crawl.py | 863 +++++
test-data/samples/crawl2.py | 852 +++++
test-data/samples/dict.py | 8 +
test-data/samples/fib.py | 5 +
test-data/samples/files.py | 14 +
test-data/samples/for.py | 4 +
test-data/samples/generators.py | 24 +
test-data/samples/greet.py | 8 +
test-data/samples/guess.py | 32 +
test-data/samples/hello.py | 2 +
test-data/samples/input.py | 3 +
test-data/samples/itertool.py | 16 +
test-data/samples/readme.txt | 25 +
test-data/samples/regexp.py | 7 +
test-data/stdlib-samples/3.2/base64.py | 411 +++
test-data/stdlib-samples/3.2/fnmatch.py | 112 +
test-data/stdlib-samples/3.2/genericpath.py | 112 +
test-data/stdlib-samples/3.2/getopt.py | 220 ++
test-data/stdlib-samples/3.2/glob.py | 84 +
.../3.2/incomplete/logging/__init__.py | 1873 +++++++++++
.../3.2/incomplete/urllib/__init__.py | 0
.../stdlib-samples/3.2/incomplete/urllib/parse.py | 980 ++++++
test-data/stdlib-samples/3.2/posixpath.py | 466 +++
test-data/stdlib-samples/3.2/pprint.py | 380 +++
test-data/stdlib-samples/3.2/random.py | 743 +++++
test-data/stdlib-samples/3.2/shutil.py | 790 +++++
test-data/stdlib-samples/3.2/subprocess.py | 1703 ++++++++++
test-data/stdlib-samples/3.2/tempfile.py | 717 +++++
.../stdlib-samples/3.2/test/__init__.py | 0
test-data/stdlib-samples/3.2/test/randv2_32.pck | 633 ++++
test-data/stdlib-samples/3.2/test/randv2_64.pck | 633 ++++
test-data/stdlib-samples/3.2/test/randv3.pck | 633 ++++
.../3.2/test/subprocessdata/fd_status.py | 24 +
.../3.2/test/subprocessdata/input_reader.py | 7 +
.../stdlib-samples/3.2/test/subprocessdata/qcat.py | 7 +
.../3.2/test/subprocessdata/qgrep.py | 10 +
.../3.2/test/subprocessdata/sigchild_ignore.py | 6 +
test-data/stdlib-samples/3.2/test/support.py | 1602 +++++++++
test-data/stdlib-samples/3.2/test/test_base64.py | 267 ++
test-data/stdlib-samples/3.2/test/test_fnmatch.py | 93 +
.../stdlib-samples/3.2/test/test_genericpath.py | 313 ++
test-data/stdlib-samples/3.2/test/test_getopt.py | 190 ++
test-data/stdlib-samples/3.2/test/test_glob.py | 122 +
.../stdlib-samples/3.2/test/test_posixpath.py | 531 +++
test-data/stdlib-samples/3.2/test/test_pprint.py | 488 +++
test-data/stdlib-samples/3.2/test/test_random.py | 533 +++
test-data/stdlib-samples/3.2/test/test_set.py | 1884 +++++++++++
test-data/stdlib-samples/3.2/test/test_shutil.py | 978 ++++++
.../stdlib-samples/3.2/test/test_subprocess.py | 1764 ++++++++++
test-data/stdlib-samples/3.2/test/test_tempfile.py | 1122 +++++++
test-data/stdlib-samples/3.2/test/test_textwrap.py | 601 ++++
.../stdlib-samples/3.2/test/tf_inherit_check.py | 25 +
test-data/stdlib-samples/3.2/textwrap.py | 391 +++
test-data/unit/check-abstract.test | 734 +++++
test-data/unit/check-async-await.test | 393 +++
test-data/unit/check-basic.test | 310 ++
test-data/unit/check-bound.test | 203 ++
test-data/unit/check-callable.test | 345 ++
test-data/unit/check-class-namedtuple.test | 378 +++
test-data/unit/check-classes.test | 2761 ++++++++++++++++
test-data/unit/check-columns.test | 68 +
test-data/unit/check-dynamic-typing.test | 676 ++++
test-data/unit/check-expressions.test | 1652 ++++++++++
test-data/unit/check-fastparse.test | 301 ++
test-data/unit/check-flags.test | 305 ++
test-data/unit/check-functions.test | 1666 ++++++++++
test-data/unit/check-generic-subtyping.test | 746 +++++
test-data/unit/check-generics.test | 1462 +++++++++
test-data/unit/check-ignore.test | 218 ++
test-data/unit/check-incremental.test | 1780 ++++++++++
test-data/unit/check-inference-context.test | 880 +++++
test-data/unit/check-inference.test | 1765 ++++++++++
test-data/unit/check-isinstance.test | 1330 ++++++++
test-data/unit/check-kwargs.test | 339 ++
test-data/unit/check-lists.test | 72 +
test-data/unit/check-modules.test | 1408 ++++++++
test-data/unit/check-multiple-inheritance.test | 242 ++
test-data/unit/check-namedtuple.test | 429 +++
test-data/unit/check-newsyntax.test | 100 +
test-data/unit/check-newtype.test | 324 ++
test-data/unit/check-optional.test | 546 ++++
test-data/unit/check-overloading.test | 759 +++++
test-data/unit/check-python2.test | 242 ++
test-data/unit/check-selftype.test | 358 +++
test-data/unit/check-semanal-error.test | 81 +
test-data/unit/check-statements.test | 1451 +++++++++
test-data/unit/check-super.test | 109 +
test-data/unit/check-tuples.test | 927 ++++++
test-data/unit/check-type-aliases.test | 74 +
test-data/unit/check-type-checks.test | 113 +
test-data/unit/check-type-promotion.test | 39 +
test-data/unit/check-typeddict.test | 462 +++
test-data/unit/check-typevar-values.test | 505 +++
test-data/unit/check-underscores.test | 16 +
test-data/unit/check-unions.test | 219 ++
test-data/unit/check-unreachable-code.test | 459 +++
test-data/unit/check-unsupported.test | 15 +
test-data/unit/check-varargs.test | 592 ++++
test-data/unit/check-warnings.test | 132 +
test-data/unit/cmdline.test | 479 +++
test-data/unit/fixtures/__new__.pyi | 14 +
test-data/unit/fixtures/alias.pyi | 12 +
test-data/unit/fixtures/args.pyi | 29 +
test-data/unit/fixtures/async_await.pyi | 9 +
test-data/unit/fixtures/bool.pyi | 15 +
test-data/unit/fixtures/callable.pyi | 26 +
test-data/unit/fixtures/classmethod.pyi | 22 +
test-data/unit/fixtures/complex.pyi | 11 +
test-data/unit/fixtures/dict.pyi | 35 +
test-data/unit/fixtures/exception.pyi | 13 +
test-data/unit/fixtures/for.pyi | 19 +
test-data/unit/fixtures/function.pyi | 10 +
test-data/unit/fixtures/isinstance.pyi | 22 +
test-data/unit/fixtures/isinstancelist.pyi | 44 +
test-data/unit/fixtures/list.pyi | 30 +
test-data/unit/fixtures/module.pyi | 18 +
test-data/unit/fixtures/module_all.pyi | 15 +
test-data/unit/fixtures/module_all_python2.pyi | 16 +
test-data/unit/fixtures/ops.pyi | 58 +
test-data/unit/fixtures/primitives.pyi | 17 +
test-data/unit/fixtures/property.pyi | 17 +
test-data/unit/fixtures/python2.pyi | 18 +
test-data/unit/fixtures/set.pyi | 21 +
test-data/unit/fixtures/slice.pyi | 13 +
test-data/unit/fixtures/staticmethod.pyi | 19 +
test-data/unit/fixtures/transform.pyi | 30 +
test-data/unit/fixtures/tuple-simple.pyi | 20 +
test-data/unit/fixtures/tuple.pyi | 29 +
test-data/unit/fixtures/union.pyi | 18 +
test-data/unit/lib-stub/__builtin__.pyi | 27 +
test-data/unit/lib-stub/abc.pyi | 3 +
test-data/unit/lib-stub/builtins.pyi | 23 +
test-data/unit/lib-stub/collections.pyi | 3 +
test-data/unit/lib-stub/mypy_extensions.pyi | 6 +
test-data/unit/lib-stub/sys.pyi | 2 +
test-data/unit/lib-stub/types.pyi | 4 +
test-data/unit/lib-stub/typing.pyi | 90 +
test-data/unit/parse-errors.test | 448 +++
test-data/unit/parse-python2.test | 399 +++
test-data/unit/parse.test | 3386 ++++++++++++++++++++
test-data/unit/python2eval.test | 474 +++
test-data/unit/pythoneval-asyncio.test | 486 +++
test-data/unit/pythoneval-enum.test | 134 +
test-data/unit/pythoneval.test | 1214 +++++++
test-data/unit/semanal-abstractclasses.test | 119 +
test-data/unit/semanal-basic.test | 459 +++
test-data/unit/semanal-classes.test | 623 ++++
test-data/unit/semanal-errors.test | 1336 ++++++++
test-data/unit/semanal-expressions.test | 395 +++
test-data/unit/semanal-modules.test | 877 +++++
test-data/unit/semanal-namedtuple.test | 177 +
test-data/unit/semanal-python2.test | 76 +
test-data/unit/semanal-statements.test | 929 ++++++
test-data/unit/semanal-symtable.test | 52 +
test-data/unit/semanal-typealiases.test | 440 +++
test-data/unit/semanal-typeddict.test | 81 +
test-data/unit/semanal-typeinfo.test | 80 +
test-data/unit/semanal-types.test | 1465 +++++++++
test-data/unit/stubgen.test | 565 ++++
test-data/unit/typexport-basic.test | 1159 +++++++
test-requirements.txt | 9 +
tmp-test-dirs/.gitignore | 4 +
typeshed/stdlib/2/UserDict.pyi | 10 +-
typeshed/stdlib/2/__builtin__.pyi | 40 +-
typeshed/stdlib/2/ast.pyi | 2 +-
typeshed/stdlib/2/builtins.pyi | 40 +-
typeshed/stdlib/2/codecs.pyi | 10 +-
typeshed/stdlib/2/collections.pyi | 16 +-
typeshed/stdlib/2/datetime.pyi | 8 +-
typeshed/stdlib/2/decimal.pyi | 2 +-
typeshed/stdlib/2/sqlite3/dbapi2.pyi | 13 +-
typeshed/stdlib/2/types.pyi | 7 +-
typeshed/stdlib/2/typing.pyi | 24 +-
typeshed/stdlib/2/unittest.pyi | 12 +-
typeshed/stdlib/2/wsgiref/types.pyi | 34 +
typeshed/stdlib/2/xml/etree/ElementTree.pyi | 116 -
typeshed/stdlib/2and3/argparse.pyi | 116 +-
typeshed/stdlib/2and3/logging/__init__.pyi | 2 +-
typeshed/stdlib/{2 => 2and3}/syslog.pyi | 6 +
.../{2 => 2and3}/xml/etree/ElementInclude.pyi | 2 -
.../stdlib/{2 => 2and3}/xml/etree/ElementPath.pyi | 2 -
.../{3.2 => 2and3}/xml/etree/ElementTree.pyi | 48 +-
.../{3.4/xml => 2and3/xml/etree}/__init__.pyi | 0
.../stdlib/{2 => 2and3}/xml/etree/cElementTree.pyi | 2 -
typeshed/stdlib/3.2/xml/etree/ElementInclude.pyi | 19 -
typeshed/stdlib/3.2/xml/etree/ElementPath.pyi | 35 -
typeshed/stdlib/3.2/xml/etree/cElementTree.pyi | 5 -
typeshed/stdlib/3.3/xml/etree/ElementInclude.pyi | 19 -
typeshed/stdlib/3.3/xml/etree/ElementPath.pyi | 35 -
typeshed/stdlib/3.3/xml/etree/ElementTree.pyi | 113 -
typeshed/stdlib/3.3/xml/etree/cElementTree.pyi | 5 -
typeshed/stdlib/3.4/asyncio/__init__.pyi | 4 +-
typeshed/stdlib/3.4/asyncio/queues.pyi | 15 +-
typeshed/stdlib/3.4/asyncio/streams.pyi | 5 +-
typeshed/stdlib/3.4/asyncio/subprocess.pyi | 4 +-
typeshed/stdlib/3.4/asyncio/tasks.pyi | 16 +-
typeshed/stdlib/3.4/xml/etree/ElementInclude.pyi | 19 -
typeshed/stdlib/3.4/xml/etree/ElementPath.pyi | 35 -
typeshed/stdlib/3.4/xml/etree/ElementTree.pyi | 118 -
typeshed/stdlib/3.4/xml/etree/cElementTree.pyi | 5 -
typeshed/stdlib/3.5/xml/etree/ElementInclude.pyi | 19 -
typeshed/stdlib/3.5/xml/etree/ElementPath.pyi | 35 -
typeshed/stdlib/3.5/xml/etree/ElementTree.pyi | 118 -
typeshed/stdlib/3.5/xml/etree/cElementTree.pyi | 5 -
typeshed/stdlib/3/ast.pyi | 2 +-
typeshed/stdlib/3/builtins.pyi | 31 +-
typeshed/stdlib/3/calendar.pyi | 7 +-
typeshed/stdlib/3/codecs.pyi | 8 +-
typeshed/stdlib/3/collections/__init__.pyi | 24 +-
typeshed/stdlib/3/collections/abc.pyi | 1 +
typeshed/stdlib/3/decimal.pyi | 1 -
typeshed/stdlib/3/itertools.pyi | 2 +-
typeshed/stdlib/3/os/__init__.pyi | 2 +
typeshed/stdlib/3/sqlite3/dbapi2.pyi | 1 -
typeshed/stdlib/3/subprocess.pyi | 6 +-
typeshed/stdlib/3/sys.pyi | 5 +
typeshed/stdlib/3/types.pyi | 2 +
typeshed/stdlib/3/typing.pyi | 40 +-
typeshed/stdlib/3/urllib/parse.pyi | 21 +-
typeshed/stdlib/3/wsgiref/types.pyi | 33 +
typeshed/stdlib/3/xml/etree/ElementInclude.pyi | 19 -
typeshed/stdlib/3/xml/etree/ElementPath.pyi | 25 -
typeshed/stdlib/3/xml/etree/ElementTree.pyi | 98 -
typeshed/stdlib/3/xml/etree/cElementTree.pyi | 5 -
typeshed/third_party/2/OpenSSL/crypto.pyi | 187 +-
.../2/cryptography}/__init__.pyi | 0
.../2/cryptography/hazmat}/__init__.pyi | 0
.../2/cryptography/hazmat/primitives}/__init__.pyi | 0
.../hazmat/primitives/asymmetric}/__init__.pyi | 0
.../hazmat/primitives/asymmetric/dsa.pyi | 4 +
.../hazmat/primitives/asymmetric/rsa.pyi | 4 +
.../hazmat/primitives/serialization.pyi | 32 +
typeshed/third_party/2/dateutil/tz/__init__.pyi | 5 +
typeshed/third_party/2/dateutil/tz/_common.pyi | 28 +
typeshed/third_party/2/dateutil/tz/tz.pyi | 85 +
typeshed/third_party/2/requests/api.pyi | 19 +-
typeshed/third_party/2/six/__init__.pyi | 2 +-
typeshed/third_party/2and3/pymysql/__init__.pyi | 39 +
typeshed/third_party/2and3/pymysql/charset.pyi | 20 +
typeshed/third_party/2and3/pymysql/connections.pyi | 142 +
.../third_party/2and3/pymysql/constants/CLIENT.pyi | 24 +
.../2and3/pymysql/constants/COMMAND.pyi | 28 +
.../third_party/2and3/pymysql/constants/ER.pyi | 477 +++
.../2and3/pymysql/constants/FIELD_TYPE.pyi | 35 +
.../third_party/2and3/pymysql/constants/FLAG.pyi | 21 +
.../2and3/pymysql/constants/SERVER_STATUS.pyi | 16 +
.../2and3/pymysql/constants/__init__.pyi | 3 +
typeshed/third_party/2and3/pymysql/converters.pyi | 50 +
typeshed/third_party/2and3/pymysql/cursors.pyi | 37 +
typeshed/third_party/2and3/pymysql/err.pyi | 22 +
typeshed/third_party/2and3/pymysql/times.pyi | 14 +
typeshed/third_party/2and3/pymysql/util.pyi | 7 +
.../{2 => 2and3}/sqlalchemy/__init__.pyi | 0
.../{2 => 2and3}/sqlalchemy/databases/__init__.pyi | 0
.../{2 => 2and3}/sqlalchemy/databases/mysql.pyi | 0
.../{2 => 2and3}/sqlalchemy/dialects/__init__.pyi | 0
.../sqlalchemy/dialects/mysql/__init__.pyi | 0
.../sqlalchemy/dialects/mysql/base.pyi | 0
.../{2 => 2and3}/sqlalchemy/engine/__init__.pyi | 0
.../{2 => 2and3}/sqlalchemy/engine/base.pyi | 0
.../{2 => 2and3}/sqlalchemy/engine/strategies.pyi | 0
.../{2 => 2and3}/sqlalchemy/engine/url.pyi | 0
.../third_party/{2 => 2and3}/sqlalchemy/exc.pyi | 0
.../{2 => 2and3}/sqlalchemy/inspection.pyi | 0
.../third_party/{2 => 2and3}/sqlalchemy/log.pyi | 0
.../{2 => 2and3}/sqlalchemy/orm/__init__.pyi | 6 +-
.../{2 => 2and3}/sqlalchemy/orm/session.pyi | 2 +-
typeshed/third_party/2and3/sqlalchemy/orm/util.pyi | 12 +
.../third_party/{2 => 2and3}/sqlalchemy/pool.pyi | 0
.../third_party/{2 => 2and3}/sqlalchemy/schema.pyi | 0
.../{2 => 2and3}/sqlalchemy/sql/__init__.pyi | 0
.../{2 => 2and3}/sqlalchemy/sql/annotation.pyi | 0
.../{2 => 2and3}/sqlalchemy/sql/base.pyi | 0
.../{2 => 2and3}/sqlalchemy/sql/ddl.pyi | 0
.../{2 => 2and3}/sqlalchemy/sql/dml.pyi | 0
.../{2 => 2and3}/sqlalchemy/sql/elements.pyi | 35 +-
.../{2 => 2and3}/sqlalchemy/sql/expression.pyi | 0
.../{2 => 2and3}/sqlalchemy/sql/functions.pyi | 0
.../{2 => 2and3}/sqlalchemy/sql/naming.pyi | 0
.../{2 => 2and3}/sqlalchemy/sql/operators.pyi | 0
.../{2 => 2and3}/sqlalchemy/sql/schema.pyi | 0
.../{2 => 2and3}/sqlalchemy/sql/selectable.pyi | 6 +-
.../{2 => 2and3}/sqlalchemy/sql/sqltypes.pyi | 0
.../{2 => 2and3}/sqlalchemy/sql/type_api.pyi | 0
.../{2 => 2and3}/sqlalchemy/sql/visitors.pyi | 0
.../third_party/{2 => 2and3}/sqlalchemy/types.pyi | 0
.../{2 => 2and3}/sqlalchemy/util/__init__.pyi | 0
.../{2 => 2and3}/sqlalchemy/util/_collections.pyi | 0
.../{2 => 2and3}/sqlalchemy/util/compat.pyi | 4 +-
.../{2 => 2and3}/sqlalchemy/util/deprecations.pyi | 0
.../{2 => 2and3}/sqlalchemy/util/langhelpers.pyi | 0
typeshed/third_party/3/dateutil/tz/__init__.pyi | 5 +
typeshed/third_party/3/dateutil/tz/_common.pyi | 28 +
typeshed/third_party/3/dateutil/tz/tz.pyi | 85 +
typeshed/third_party/3/requests/api.pyi | 16 +-
426 files changed, 94677 insertions(+), 1718 deletions(-)
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-med/mypy.git
More information about the debian-med-commit
mailing list