This is an automated email from the git hooks/post-receive script. misterc-guest pushed a commit to tag debian/0.521-1 in repository mypy.
commit 0741039d59dd949658f25db391ccfe71805ce564 Merge: 2df80b8 d434eaa Author: Michael R. Crusoe <[email protected]> Date: Tue Jul 25 11:19:09 2017 -0700 Updated version 0.521 from 'upstream/0.521' with Debian dir 3b9fb7c7d6cc8feedb00ffcafb45dac6d450be74 .gitignore | 30 + .gitmodules | 3 + .travis.yml | 23 + CONTRIBUTING.md | 163 + CREDITS | 101 + LICENSE | 227 ++ PKG-INFO | 2 +- README.md | 268 ++ ROADMAP.md | 96 + appveyor.yml | 41 + build-requirements.txt | 2 + conftest.py | 13 + 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 | 254 ++ docs/source/cheat_sheet_py3.rst | 307 ++ docs/source/class_basics.rst | 157 + docs/source/command_line.rst | 484 +++ docs/source/common_issues.rst | 432 +++ docs/source/conf.py | 268 ++ docs/source/config_file.rst | 210 ++ docs/source/duck_type_compatibility.rst | 40 + docs/source/dynamic_typing.rst | 86 + docs/source/faq.rst | 270 ++ docs/source/function_overloading.rst | 92 + docs/source/generics.rst | 541 +++ docs/source/getting_started.rst | 24 + docs/source/index.rst | 42 + docs/source/introduction.rst | 30 + docs/source/kinds_of_types.rst | 1359 ++++++++ docs/source/python2.rst | 130 + docs/source/python36.rst | 96 + docs/source/revision_history.rst | 245 ++ docs/source/supported_python_features.rst | 20 + docs/source/type_inference_and_annotations.rst | 172 + extensions/README.md | 6 + extensions/mypy_extensions.py | 137 + extensions/setup.py | 45 + 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/upload-pypi.py | 160 + misc/variadics.py | 54 + mypy.egg-info/PKG-INFO | 2 +- mypy.egg-info/SOURCES.txt | 301 ++ mypy.egg-info/requires.txt | 2 +- mypy/build.py | 80 +- mypy/checker.py | 7 +- mypy/fastparse.py | 2 +- mypy/fastparse2.py | 2 +- mypy/fixup.py | 3 + mypy/myunit/__init__.py | 383 +++ mypy/myunit/__main__.py | 18 + mypy/nodes.py | 14 +- mypy/options.py | 3 +- mypy/semanal.py | 17 +- mypy/server/__init__.py | 0 mypy/server/astdiff.py | 209 ++ mypy/server/astmerge.py | 222 ++ mypy/server/aststrip.py | 99 + mypy/server/deps.py | 232 ++ mypy/server/subexpr.py | 144 + mypy/server/target.py | 17 + mypy/server/trigger.py | 5 + mypy/server/update.py | 425 +++ mypy/test/__init__.py | 0 mypy/test/collect.py | 0 mypy/test/config.py | 19 + mypy/test/data.py | 564 ++++ mypy/test/helpers.py | 309 ++ mypy/test/testargs.py | 18 + mypy/test/testcheck.py | 364 ++ mypy/test/testcmdline.py | 112 + mypy/test/testdeps.py | 67 + mypy/test/testdiff.py | 75 + mypy/test/testextensions.py | 143 + mypy/test/testfinegrained.py | 120 + mypy/test/testgraph.py | 76 + mypy/test/testinfer.py | 223 ++ mypy/test/testmerge.py | 206 ++ mypy/test/testmoduleinfo.py | 14 + mypy/test/testparse.py | 79 + mypy/test/testpythoneval.py | 128 + mypy/test/testreports.py | 40 + mypy/test/testsemanal.py | 227 ++ mypy/test/testsolve.py | 132 + mypy/test/teststubgen.py | 204 ++ mypy/test/testsubtypes.py | 207 ++ mypy/test/testtransform.py | 88 + mypy/test/testtypegen.py | 128 + mypy/test/testtypes.py | 806 +++++ mypy/test/update.py | 0 mypy/version.py | 2 +- mypy_self_check.ini | 8 + pinfer/.gitignore | 3 + pinfer/LICENSE | 27 + pinfer/README | 47 + 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 | 21 + runtests.py | 461 +++ scripts/__pycache__/dumpmodule.cpython-36.pyc | Bin 0 -> 3853 bytes test-data/.flake8 | 22 + 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 | 1704 ++++++++++ test-data/stdlib-samples/3.2/tempfile.py | 721 ++++ test-data/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/README.md | 180 + test-data/unit/check-abstract.test | 833 +++++ test-data/unit/check-async-await.test | 677 ++++ 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 | 669 ++++ test-data/unit/check-classes.test | 3551 ++++++++++++++++++++ test-data/unit/check-classvar.test | 266 ++ test-data/unit/check-columns.test | 68 + test-data/unit/check-custom-plugin.test | 148 + test-data/unit/check-dynamic-typing.test | 676 ++++ test-data/unit/check-enum.test | 397 +++ test-data/unit/check-expressions.test | 1735 ++++++++++ test-data/unit/check-fastparse.test | 366 ++ test-data/unit/check-flags.test | 900 +++++ test-data/unit/check-functions.test | 2127 ++++++++++++ test-data/unit/check-generic-subtyping.test | 763 +++++ test-data/unit/check-generics.test | 1749 ++++++++++ test-data/unit/check-ignore.test | 218 ++ test-data/unit/check-incomplete-fixture.test | 98 + test-data/unit/check-incremental.test | 2842 ++++++++++++++++ test-data/unit/check-inference-context.test | 897 +++++ test-data/unit/check-inference.test | 1889 +++++++++++ test-data/unit/check-isinstance.test | 1756 ++++++++++ test-data/unit/check-kwargs.test | 397 +++ test-data/unit/check-lists.test | 72 + test-data/unit/check-modules.test | 1642 +++++++++ test-data/unit/check-multiple-inheritance.test | 242 ++ test-data/unit/check-namedtuple.test | 467 +++ test-data/unit/check-newsyntax.test | 153 + test-data/unit/check-newtype.test | 346 ++ test-data/unit/check-optional.test | 615 ++++ test-data/unit/check-overloading.test | 1159 +++++++ test-data/unit/check-python2.test | 310 ++ test-data/unit/check-selftype.test | 378 +++ test-data/unit/check-semanal-error.test | 97 + test-data/unit/check-serialize.test | 1249 +++++++ test-data/unit/check-statements.test | 1559 +++++++++ test-data/unit/check-super.test | 117 + test-data/unit/check-tuples.test | 943 ++++++ test-data/unit/check-type-aliases.test | 114 + test-data/unit/check-type-checks.test | 113 + test-data/unit/check-type-promotion.test | 39 + test-data/unit/check-typeddict.test | 1258 +++++++ test-data/unit/check-typevar-values.test | 517 +++ test-data/unit/check-underscores.test | 16 + test-data/unit/check-unions.test | 498 +++ test-data/unit/check-unreachable-code.test | 536 +++ test-data/unit/check-unsupported.test | 17 + test-data/unit/check-varargs.test | 595 ++++ test-data/unit/check-warnings.test | 184 + test-data/unit/cmdline.test | 1033 ++++++ test-data/unit/deps.test | 281 ++ test-data/unit/diff.test | 267 ++ test-data/unit/fine-grained.test | 872 +++++ 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 | 20 + test-data/unit/fixtures/bool.pyi | 12 + test-data/unit/fixtures/callable.pyi | 26 + test-data/unit/fixtures/classmethod.pyi | 26 + test-data/unit/fixtures/complex.pyi | 11 + test-data/unit/fixtures/dict.pyi | 44 + test-data/unit/fixtures/exception.pyi | 13 + test-data/unit/fixtures/f_string.pyi | 36 + test-data/unit/fixtures/fine_grained.pyi | 26 + test-data/unit/fixtures/float.pyi | 31 + test-data/unit/fixtures/floatdict.pyi | 63 + test-data/unit/fixtures/for.pyi | 19 + test-data/unit/fixtures/function.pyi | 7 + test-data/unit/fixtures/isinstance.pyi | 24 + test-data/unit/fixtures/isinstancelist.pyi | 47 + test-data/unit/fixtures/list.pyi | 32 + test-data/unit/fixtures/module.pyi | 21 + test-data/unit/fixtures/module_all.pyi | 18 + test-data/unit/fixtures/module_all_python2.pyi | 15 + test-data/unit/fixtures/ops.pyi | 57 + test-data/unit/fixtures/primitives.pyi | 21 + test-data/unit/fixtures/property.pyi | 20 + 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 | 33 + test-data/unit/fixtures/type.pyi | 21 + test-data/unit/fixtures/typing-full.pyi | 120 + 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 | 21 + test-data/unit/lib-stub/collections.pyi | 3 + test-data/unit/lib-stub/enum.pyi | 28 + test-data/unit/lib-stub/mypy_extensions.pyi | 21 + test-data/unit/lib-stub/six.pyi | 2 + test-data/unit/lib-stub/sys.pyi | 2 + test-data/unit/lib-stub/types.pyi | 10 + test-data/unit/lib-stub/typing.pyi | 64 + test-data/unit/merge.test | 608 ++++ test-data/unit/parse-errors.test | 448 +++ test-data/unit/parse-python2.test | 399 +++ test-data/unit/parse.test | 3386 +++++++++++++++++++ test-data/unit/plugins/attrhook.py | 21 + test-data/unit/plugins/badreturn.py | 2 + test-data/unit/plugins/badreturn2.py | 5 + test-data/unit/plugins/fnplugin.py | 14 + test-data/unit/plugins/named_callable.py | 28 + test-data/unit/plugins/noentry.py | 1 + test-data/unit/plugins/plugin2.py | 13 + test-data/unit/plugins/type_anal_hook.py | 37 + test-data/unit/python2eval.test | 474 +++ test-data/unit/pythoneval-asyncio.test | 486 +++ test-data/unit/pythoneval.test | 1396 ++++++++ test-data/unit/semanal-abstractclasses.test | 119 + test-data/unit/semanal-basic.test | 459 +++ test-data/unit/semanal-classes.test | 633 ++++ test-data/unit/semanal-classvar.test | 223 ++ test-data/unit/semanal-errors.test | 1403 ++++++++ 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 | 36 + test-data/unit/semanal-typeinfo.test | 88 + test-data/unit/semanal-types.test | 1495 ++++++++ test-data/unit/stubgen.test | 632 ++++ test-data/unit/typexport-basic.test | 1169 +++++++ test-requirements.txt | 9 + tmp-test-dirs/.gitignore | 4 + typeshed/stdlib/2and3/csv.pyi | 44 +- 314 files changed, 99048 insertions(+), 62 deletions(-) -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-med/mypy.git _______________________________________________ debian-med-commit mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit
