[med-svn] [mypy] 01/04: Updated version 0.511 from 'upstream/0.511'

Michael Crusoe misterc-guest at moszumanska.debian.org
Sat Jun 24 16:50:42 UTC 2017


This is an automated email from the git hooks/post-receive script.

misterc-guest pushed a commit to tag debian/0.511-1
in repository mypy.

commit 6a9d11611b397b5d16b5eb98887f5156a90e1abe
Merge: 5910129 9adeeea
Author: Michael R. Crusoe <michael.crusoe at gmail.com>
Date:   Sat Jun 24 08:49:17 2017 -0700

    Updated version 0.511 from 'upstream/0.511'
    
    with Debian dir 180556e35f1f409df94c6f0654fb71e4cff59ddb

 .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                          |  584 +---
 mypy.egg-info/requires.txt                         |    2 +-
 mypy/api.py                                        |   12 +-
 mypy/applytype.py                                  |    7 +-
 mypy/binder.py                                     |   64 +-
 mypy/build.py                                      |  212 +-
 mypy/checker.py                                    | 1127 ++++---
 mypy/checkexpr.py                                  |  349 +-
 mypy/checkmember.py                                |   61 +-
 mypy/checkstrformat.py                             |  105 +-
 mypy/constraints.py                                |   60 +-
 mypy/defaults.py                                   |    2 +-
 mypy/erasetype.py                                  |   20 +-
 mypy/errors.py                                     |  157 +-
 mypy/expandtype.py                                 |   13 +-
 mypy/exprtotype.py                                 |   93 +-
 mypy/fastparse.py                                  |  523 +--
 mypy/fastparse2.py                                 |   67 +-
 mypy/fixup.py                                      |   73 +-
 mypy/indirection.py                                |   11 +-
 mypy/infer.py                                      |    4 +-
 mypy/join.py                                       |  103 +-
 mypy/lex.py                                        |  904 ------
 mypy/main.py                                       |  129 +-
 mypy/maptype.py                                    |    9 +-
 mypy/meet.py                                       |  126 +-
 mypy/messages.py                                   |  117 +-
 mypy/moduleinfo.py                                 |    6 +
 mypy/myunit/__init__.py                            |  380 ---
 mypy/myunit/__main__.py                            |   18 -
 mypy/nodes.py                                      |  494 ++-
 mypy/options.py                                    |   25 +-
 mypy/parse.py                                      | 2047 +-----------
 mypy/parsetype.py                                  |  249 --
 mypy/report.py                                     |   59 +-
 mypy/sametypes.py                                  |   11 +-
 mypy/semanal.py                                    | 1152 +++++--
 mypy/sharedparse.py                                |    1 +
 mypy/solve.py                                      |   25 +-
 mypy/stats.py                                      |    9 +-
 mypy/strconv.py                                    |  104 +-
 mypy/stubgen.py                                    |   55 +-
 mypy/stubgenc.py                                   |   13 +-
 mypy/stubutil.py                                   |    3 +-
 mypy/subtypes.py                                   |  325 +-
 mypy/test/__init__.py                              |    0
 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 -----
 mypy/test/update.py                                |    0
 mypy/traverser.py                                  |   48 +-
 mypy/treetransform.py                              |   48 +-
 mypy/tvar_scope.py                                 |   82 +
 mypy/typeanal.py                                   |  418 ++-
 mypy/typefixture.py                                |    9 +-
 mypy/types.py                                      |  562 ++--
 mypy/typevars.py                                   |    2 +-
 mypy/util.py                                       |   58 +-
 mypy/version.py                                    |    2 +-
 mypy/visitor.py                                    |  137 +-
 mypy/waiter.py                                     |  108 +-
 mypy_self_check.ini                                |    8 -
 mypy_strict_optional.ini                           |    5 -
 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                                         |   14 -
 runtests.py                                        |  428 ---
 scripts/dumpmodule.py                              |  161 +
 scripts/stubtest.py                                |  205 ++
 setup.cfg                                          |   10 +-
 setup.py                                           |    9 +-
 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 -----
 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/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/ConfigParser.pyi                 |   22 +-
 typeshed/stdlib/2/SimpleHTTPServer.pyi             |   16 +
 typeshed/stdlib/2/StringIO.pyi                     |    8 +-
 typeshed/stdlib/2/__builtin__.pyi                  |  130 +-
 typeshed/stdlib/2/__future__.pyi                   |   13 -
 typeshed/stdlib/2/_codecs.pyi                      |   55 -
 typeshed/stdlib/2/_io.pyi                          |   30 +-
 typeshed/stdlib/2/_sre.pyi                         |    6 +-
 typeshed/stdlib/2/_struct.pyi                      |    8 +-
 typeshed/stdlib/2/_warnings.pyi                    |    6 +-
 typeshed/stdlib/2/abc.pyi                          |   14 +-
 typeshed/stdlib/2/array.pyi                        |   40 +-
 typeshed/stdlib/2/base64.pyi                       |   25 -
 typeshed/stdlib/2/binascii.pyi                     |   21 -
 typeshed/stdlib/2/builtins.pyi                     |  130 +-
 typeshed/stdlib/2/cStringIO.pyi                    |   10 +-
 typeshed/stdlib/2/collections.pyi                  |   29 +-
 typeshed/stdlib/2/compileall.pyi                   |   13 +-
 typeshed/stdlib/2/copy.pyi                         |   10 -
 typeshed/stdlib/2/csv.pyi                          |    8 +-
 typeshed/stdlib/2/datetime.pyi                     |   27 +-
 typeshed/stdlib/2/encodings/utf_8.pyi              |    6 +-
 typeshed/stdlib/2/fnmatch.pyi                      |   12 +-
 typeshed/stdlib/2/hashlib.pyi                      |   26 +-
 typeshed/stdlib/2/inspect.pyi                      |   42 +-
 typeshed/stdlib/2/io.pyi                           |   27 +-
 typeshed/stdlib/2/itertools.pyi                    |   36 +-
 typeshed/stdlib/2/macpath.pyi                      |   50 +
 typeshed/stdlib/2/md5.pyi                          |    7 +-
 typeshed/stdlib/2/ntpath.pyi                       |   50 +
 typeshed/stdlib/2/nturl2path.pyi                   |    4 +
 typeshed/stdlib/2/optparse.pyi                     |  249 --
 typeshed/stdlib/2/os/__init__.pyi                  |  467 ++-
 typeshed/stdlib/2/os/path.pyi                      |   45 +-
 typeshed/stdlib/2/os2emxpath.pyi                   |   50 +
 typeshed/stdlib/2/pickle.pyi                       |   10 +-
 typeshed/stdlib/2/posix.pyi                        |    2 +-
 typeshed/stdlib/2/pprint.pyi                       |   24 -
 typeshed/stdlib/2/pydoc.pyi                        |  181 ++
 typeshed/stdlib/2/quopri.pyi                       |    8 -
 typeshed/stdlib/2/repr.pyi                         |   31 +
 typeshed/stdlib/2/sets.pyi                         |   61 +
 typeshed/stdlib/2/socket.pyi                       |  362 ---
 typeshed/stdlib/2/ssl.pyi                          |    6 +-
 typeshed/stdlib/2/string.pyi                       |    6 +-
 typeshed/stdlib/2/struct.pyi                       |   28 -
 typeshed/stdlib/2/subprocess.pyi                   |   56 +-
 typeshed/stdlib/2/symbol.pyi                       |   91 +
 typeshed/stdlib/2/tempfile.pyi                     |    6 +-
 typeshed/stdlib/2/time.pyi                         |    4 +-
 typeshed/stdlib/2/token.pyi                        |   62 -
 typeshed/stdlib/2/tokenize.pyi                     |    4 -
 typeshed/stdlib/2/types.pyi                        |   14 +-
 typeshed/stdlib/2/typing.pyi                       |   49 +-
 typeshed/stdlib/2/unicodedata.pyi                  |   40 -
 typeshed/stdlib/2/unittest.pyi                     |   13 +-
 typeshed/stdlib/2/urllib2.pyi                      |   77 +-
 typeshed/stdlib/2/uuid.pyi                         |   36 -
 typeshed/stdlib/2/xmlrpclib.pyi                    |  199 ++
 typeshed/stdlib/2/xxsubtype.pyi                    |   17 -
 typeshed/stdlib/2/zlib.pyi                         |   42 -
 typeshed/stdlib/{3 => 2and3}/__future__.pyi        |    0
 typeshed/stdlib/2and3/_bisect.pyi                  |   14 +-
 typeshed/stdlib/2and3/_codecs.pyi                  |   74 +
 typeshed/stdlib/{2 => 2and3}/_random.pyi           |    6 +-
 typeshed/stdlib/2and3/asynchat.pyi                 |    6 +-
 typeshed/stdlib/2and3/asyncore.pyi                 |    2 +-
 typeshed/stdlib/{3 => 2and3}/base64.pyi            |    8 +-
 typeshed/stdlib/2and3/binascii.pyi                 |   45 +
 typeshed/stdlib/2and3/binhex.pyi                   |   48 +
 typeshed/stdlib/2and3/cgi.pyi                      |  119 +
 typeshed/stdlib/2and3/cmd.pyi                      |   41 +
 typeshed/stdlib/{2 => 2and3}/codecs.pyi            |   64 +-
 typeshed/stdlib/2and3/contextlib.pyi               |    7 +-
 typeshed/stdlib/2and3/copy.pyi                     |   14 +
 typeshed/stdlib/2and3/dis.pyi                      |   75 +
 typeshed/stdlib/2and3/distutils/core.pyi           |   15 +-
 typeshed/stdlib/2and3/filecmp.pyi                  |   48 +
 typeshed/stdlib/2and3/fractions.pyi                |    6 +-
 typeshed/stdlib/2and3/ftplib.pyi                   |  134 +
 typeshed/stdlib/2and3/hmac.pyi                     |    2 +
 typeshed/stdlib/2and3/lib2to3/__init__.pyi         |    1 +
 typeshed/stdlib/2and3/lib2to3/pgen2/__init__.pyi   |   10 +
 typeshed/stdlib/2and3/lib2to3/pgen2/driver.pyi     |   24 +
 typeshed/stdlib/2and3/lib2to3/pgen2/grammar.pyi    |   29 +
 typeshed/stdlib/2and3/lib2to3/pgen2/literals.pyi   |    9 +
 typeshed/stdlib/2and3/lib2to3/pgen2/parse.pyi      |   29 +
 typeshed/stdlib/2and3/lib2to3/pgen2/pgen.pyi       |   49 +
 typeshed/stdlib/2and3/lib2to3/pgen2/token.pyi      |   73 +
 typeshed/stdlib/2and3/lib2to3/pgen2/tokenize.pyi   |   30 +
 typeshed/stdlib/2and3/lib2to3/pygram.pyi           |  116 +
 typeshed/stdlib/2and3/lib2to3/pytree.pyi           |   86 +
 typeshed/stdlib/2and3/locale.pyi                   |    2 +-
 typeshed/stdlib/2and3/logging/__init__.pyi         |  114 +-
 typeshed/stdlib/2and3/logging/handlers.pyi         |    2 +-
 typeshed/stdlib/2and3/mmap.pyi                     |    8 +-
 typeshed/stdlib/{3 => 2and3}/opcode.pyi            |   13 +-
 typeshed/stdlib/2and3/optparse.pyi                 |  226 ++
 typeshed/stdlib/2and3/pickletools.pyi              |  145 +
 typeshed/stdlib/2and3/plistlib.pyi                 |    2 +-
 typeshed/stdlib/2and3/poplib.pyi                   |   75 +
 typeshed/stdlib/{3 => 2and3}/pprint.pyi            |    3 +-
 typeshed/stdlib/2and3/pstats.pyi                   |   12 +-
 typeshed/stdlib/2and3/pty.pyi                      |   20 +
 typeshed/stdlib/2and3/py_compile.pyi               |   20 +
 typeshed/stdlib/{3 => 2and3}/pyclbr.pyi            |    2 +-
 typeshed/stdlib/2and3/quopri.pyi                   |    8 +
 typeshed/stdlib/2and3/sched.pyi                    |   29 +
 typeshed/stdlib/2and3/smtpd.pyi                    |   87 +
 typeshed/stdlib/2and3/sndhdr.pyi                   |   25 +
 typeshed/stdlib/{3 => 2and3}/socket.pyi            |   96 +-
 typeshed/stdlib/{2 => 2and3}/spwd.pyi              |    4 +-
 typeshed/stdlib/2and3/stringprep.pyi               |   23 +
 typeshed/stdlib/2and3/struct.pyi                   |   40 +
 typeshed/stdlib/2and3/sunau.pyi                    |   88 +
 typeshed/stdlib/2and3/symtable.pyi                 |   45 +
 typeshed/stdlib/2and3/sysconfig.pyi                |   19 +
 typeshed/stdlib/2and3/tabnanny.pyi                 |   22 +
 typeshed/stdlib/2and3/tarfile.pyi                  |    6 +-
 typeshed/stdlib/2and3/telnetlib.pyi                |  115 +
 typeshed/stdlib/2and3/timeit.pyi                   |   33 +
 typeshed/stdlib/2and3/token.pyi                    |   71 +
 typeshed/stdlib/2and3/trace.pyi                    |   35 +
 typeshed/stdlib/2and3/traceback.pyi                |    8 +-
 typeshed/stdlib/2and3/tty.pyi                      |   13 +
 typeshed/stdlib/2and3/unicodedata.pyi              |   38 +
 typeshed/stdlib/2and3/uu.pyi                       |   10 +
 typeshed/stdlib/2and3/uuid.pyi                     |   87 +
 typeshed/stdlib/2and3/wave.pyi                     |   75 +
 typeshed/stdlib/2and3/webbrowser.pyi               |   42 +-
 typeshed/stdlib/2and3/xdrlib.pyi                   |   56 +
 typeshed/stdlib/2and3/xml/etree/ElementTree.pyi    |  136 +-
 typeshed/stdlib/2and3/xml/sax/__init__.pyi         |   27 +-
 typeshed/stdlib/{3 => 2and3}/zlib.pyi              |   25 +-
 typeshed/stdlib/3.4/asyncio/__init__.pyi           |    8 +
 typeshed/stdlib/3.4/asyncio/events.pyi             |  111 +-
 typeshed/stdlib/3.4/asyncio/futures.pyi            |    3 +
 typeshed/stdlib/3.4/asyncio/locks.pyi              |   20 +-
 typeshed/stdlib/3.4/asyncio/queues.pyi             |   28 +-
 typeshed/stdlib/3.4/asyncio/streams.pyi            |    6 +-
 typeshed/stdlib/3.4/asyncio/subprocess.pyi         |   17 +-
 typeshed/stdlib/3.4/asyncio/tasks.pyi              |    2 +-
 typeshed/stdlib/3.4/enum.pyi                       |   25 +-
 typeshed/stdlib/3.4/pathlib.pyi                    |   20 +-
 typeshed/stdlib/3.4/statistics.pyi                 |   24 +
 typeshed/stdlib/3.4/tracemalloc.pyi                |   65 +
 typeshed/stdlib/3.5/zipapp.pyi                     |   11 +
 typeshed/stdlib/3/_codecs.pyi                      |   51 -
 typeshed/stdlib/3/_imp.pyi                         |   22 +
 typeshed/stdlib/3/_importlib_modulespec.pyi        |    5 +-
 typeshed/stdlib/3/_markupbase.pyi                  |    2 +-
 typeshed/stdlib/3/_operator.pyi                    |  128 +-
 typeshed/stdlib/3/_posixsubprocess.pyi             |    9 +-
 typeshed/stdlib/3/_random.pyi                      |   12 -
 typeshed/stdlib/3/_warnings.pyi                    |    6 +-
 typeshed/stdlib/3/abc.pyi                          |   21 +-
 typeshed/stdlib/3/binascii.pyi                     |   26 -
 typeshed/stdlib/3/builtins.pyi                     |  196 +-
 typeshed/stdlib/3/calendar.pyi                     |    2 +-
 typeshed/stdlib/3/cgi.pyi                          |    4 -
 typeshed/stdlib/3/codecs.pyi                       |  194 --
 typeshed/stdlib/3/collections/__init__.pyi         |   63 +-
 typeshed/stdlib/3/collections/abc.pyi              |    1 +
 typeshed/stdlib/3/compileall.pyi                   |   18 +
 typeshed/stdlib/3/concurrent/futures/_base.pyi     |    4 +-
 typeshed/stdlib/3/copy.pyi                         |   10 -
 typeshed/stdlib/3/datetime.pyi                     |    2 +-
 typeshed/stdlib/3/difflib.pyi                      |    2 +-
 typeshed/stdlib/3/dis.pyi                          |   63 -
 typeshed/stdlib/3/email/message.pyi                |    2 +-
 typeshed/stdlib/3/encodings/utf_8.pyi              |    6 +-
 typeshed/stdlib/3/fileinput.pyi                    |   29 +-
 typeshed/stdlib/3/hashlib.pyi                      |   24 +-
 typeshed/stdlib/3/http/__init__.pyi                |  114 +-
 typeshed/stdlib/3/http/client.pyi                  |    4 +
 typeshed/stdlib/3/imp.pyi                          |   55 +-
 typeshed/stdlib/3/inspect.pyi                      |    4 +-
 typeshed/stdlib/3/io.pyi                           |    4 +-
 typeshed/stdlib/3/itertools.pyi                    |   16 +-
 typeshed/stdlib/3/json.pyi                         |   88 -
 typeshed/stdlib/3/json/__init__.pyi                |   51 +
 typeshed/stdlib/3/json/decoder.pyi                 |   28 +
 typeshed/stdlib/3/json/encoder.pyi                 |   20 +
 typeshed/stdlib/3/linecache.pyi                    |    6 +-
 typeshed/stdlib/3/macpath.pyi                      |   46 +
 typeshed/stdlib/3/nntplib.pyi                      |  104 +
 typeshed/stdlib/3/ntpath.pyi                       |   46 +
 typeshed/stdlib/3/nturl2path.pyi                   |    2 +
 typeshed/stdlib/3/os/__init__.pyi                  |  213 +-
 typeshed/stdlib/3/os/path.pyi                      |   56 +-
 typeshed/stdlib/3/queue.pyi                        |    2 +-
 typeshed/stdlib/3/reprlib.pyi                      |   37 +
 typeshed/stdlib/3/shlex.pyi                        |    4 +-
 typeshed/stdlib/3/shutil.pyi                       |   96 +-
 typeshed/stdlib/3/sqlite3/dbapi2.pyi               |   19 +-
 typeshed/stdlib/3/ssl.pyi                          |    4 +-
 typeshed/stdlib/3/string.pyi                       |    6 +-
 typeshed/stdlib/3/struct.pyi                       |   30 -
 typeshed/stdlib/3/subprocess.pyi                   |  306 +-
 typeshed/stdlib/3/symbol.pyi                       |   98 +
 typeshed/stdlib/3/sysconfig.pyi                    |    8 -
 typeshed/stdlib/3/tempfile.pyi                     |  117 +-
 typeshed/stdlib/3/time.pyi                         |    8 +-
 typeshed/stdlib/3/token.pyi                        |   63 -
 typeshed/stdlib/3/tokenize.pyi                     |   47 +-
 typeshed/stdlib/3/types.pyi                        |    2 +-
 typeshed/stdlib/3/typing.pyi                       |   51 +-
 typeshed/stdlib/3/unicodedata.pyi                  |   37 -
 typeshed/stdlib/3/unittest/__init__.pyi            |   48 +-
 typeshed/stdlib/3/unittest/mock.pyi                |  140 +-
 typeshed/stdlib/3/urllib/parse.pyi                 |   19 +-
 typeshed/stdlib/3/urllib/request.pyi               |   12 +-
 typeshed/stdlib/3/urllib/response.pyi              |    3 +
 typeshed/stdlib/3/uuid.pyi                         |   73 -
 typeshed/tests/mypy_selftest.py                    |   27 +
 typeshed/tests/mypy_test.py                        |    4 +-
 .../third_party/2/concurrent/futures/__init__.pyi  |   14 +-
 typeshed/third_party/2/dateutil/relativedelta.pyi  |   49 +-
 typeshed/third_party/2/dateutil/tz/tz.pyi          |    2 +-
 .../third_party/2/google/protobuf/descriptor.pyi   |    2 +-
 typeshed/third_party/2/requests/__init__.pyi       |   39 -
 typeshed/third_party/2/requests/adapters.pyi       |   72 -
 typeshed/third_party/2/requests/api.pyi            |   26 -
 typeshed/third_party/2/requests/cookies.pyi        |   61 -
 typeshed/third_party/2/requests/models.pyi         |  135 -
 .../2/requests/packages/urllib3/__init__.pyi       |   12 -
 .../2/requests/packages/urllib3/connection.pyi     |   51 -
 .../2/requests/packages/urllib3/connectionpool.pyi |   87 -
 .../packages/ssl_match_hostname/__init__.pyi       |    1 -
 .../2/requests/packages/urllib3/response.pyi       |   58 -
 .../2/requests/packages/urllib3/util/__init__.pyi  |    6 -
 typeshed/third_party/2/requests/sessions.pyi       |  106 -
 typeshed/third_party/2/six/moves/__init__.pyi      |   53 +-
 typeshed/third_party/2/six/moves/cPickle.pyi       |    6 -
 .../third_party/2/six/moves/urllib/__init__.pyi    |    5 -
 typeshed/third_party/2/six/moves/urllib/error.pyi  |    5 -
 typeshed/third_party/2/six/moves/urllib/parse.pyi  |   54 +-
 .../third_party/2/six/moves/urllib/request.pyi     |    6 +-
 .../third_party/2/six/moves/urllib/response.pyi    |    6 +-
 .../third_party/2/six/moves/urllib/robotparser.pyi |    5 -
 typeshed/third_party/2/six/moves/urllib_error.pyi  |   10 -
 typeshed/third_party/2/six/moves/urllib_parse.pyi  |   28 -
 .../third_party/2/six/moves/urllib_request.pyi     |   40 -
 .../third_party/2/six/moves/urllib_response.pyi    |   11 -
 .../third_party/2/six/moves/urllib_robotparser.pyi |    8 -
 typeshed/third_party/2/werkzeug/wrappers.pyi       |  117 +-
 typeshed/third_party/2and3/boto/kms/__init__.pyi   |    9 +
 typeshed/third_party/2and3/boto/kms/exceptions.pyi |   21 +
 typeshed/third_party/2and3/boto/kms/layer1.pyi     |   41 +
 typeshed/third_party/2and3/boto/s3/bucket.pyi      |    2 +-
 .../third_party/2and3/characteristic/__init__.pyi  |    4 +-
 typeshed/third_party/2and3/jinja2/environment.pyi  |   10 +
 typeshed/third_party/2and3/mypy_extensions.pyi     |   12 +-
 typeshed/third_party/2and3/pytz/__init__.pyi       |   33 +-
 .../third_party/{3 => 2and3}/requests/__init__.pyi |    0
 .../third_party/{3 => 2and3}/requests/adapters.pyi |    8 +-
 typeshed/third_party/2and3/requests/api.pyi        |   26 +
 .../third_party/{2 => 2and3}/requests/auth.pyi     |    0
 .../third_party/{2 => 2and3}/requests/compat.pyi   |    0
 .../third_party/{3 => 2and3}/requests/cookies.pyi  |   10 +-
 .../{2 => 2and3}/requests/exceptions.pyi           |    0
 .../third_party/{2 => 2and3}/requests/hooks.pyi    |    0
 .../third_party/{3 => 2and3}/requests/models.pyi   |    8 +-
 .../{2 => 2and3}/requests/packages/__init__.pyi    |    0
 .../requests/packages/urllib3/__init__.pyi         |    0
 .../requests/packages/urllib3/_collections.pyi     |    0
 .../requests/packages/urllib3/connection.pyi       |   19 +-
 .../requests/packages/urllib3/connectionpool.pyi   |    0
 .../requests/packages/urllib3/contrib/__init__.pyi |    0
 .../requests/packages/urllib3/exceptions.pyi       |    0
 .../requests/packages/urllib3/fields.pyi           |    0
 .../requests/packages/urllib3/filepost.pyi         |    0
 .../packages/urllib3/packages/__init__.pyi         |    0
 .../packages/ssl_match_hostname/__init__.pyi       |    0
 .../ssl_match_hostname/_implementation.pyi         |    0
 .../requests/packages/urllib3/poolmanager.pyi      |    0
 .../requests/packages/urllib3/request.pyi          |    0
 .../requests/packages/urllib3/response.pyi         |    6 +-
 .../requests/packages/urllib3/util/__init__.pyi    |    0
 .../requests/packages/urllib3/util/connection.pyi  |    0
 .../requests/packages/urllib3/util/request.pyi     |    0
 .../requests/packages/urllib3/util/response.pyi    |    0
 .../requests/packages/urllib3/util/retry.pyi       |    0
 .../requests/packages/urllib3/util/ssl_.pyi        |    0
 .../requests/packages/urllib3/util/timeout.pyi     |    0
 .../requests/packages/urllib3/util/url.pyi         |    0
 .../third_party/{3 => 2and3}/requests/sessions.pyi |   46 +-
 .../{2 => 2and3}/requests/status_codes.pyi         |    0
 .../{2 => 2and3}/requests/structures.pyi           |    6 +-
 .../third_party/{2 => 2and3}/requests/utils.pyi    |    0
 typeshed/third_party/2and3/sqlalchemy/__init__.pyi |  124 -
 .../2and3/sqlalchemy/databases/__init__.pyi        |   12 -
 .../2and3/sqlalchemy/databases/mysql.pyi           |    1 -
 .../2and3/sqlalchemy/dialects/__init__.pyi         |   12 -
 .../2and3/sqlalchemy/dialects/mysql/__init__.pyi   |   40 -
 .../2and3/sqlalchemy/dialects/mysql/base.pyi       |  413 ---
 .../2and3/sqlalchemy/engine/__init__.pyi           |   11 -
 .../third_party/2and3/sqlalchemy/engine/base.pyi   |   21 -
 .../2and3/sqlalchemy/engine/strategies.pyi         |   39 -
 .../third_party/2and3/sqlalchemy/engine/url.pyi    |   27 -
 typeshed/third_party/2and3/sqlalchemy/exc.pyi      |   77 -
 .../third_party/2and3/sqlalchemy/inspection.pyi    |    5 -
 typeshed/third_party/2and3/sqlalchemy/log.pyi      |   14 -
 .../third_party/2and3/sqlalchemy/orm/__init__.pyi  |   95 -
 .../third_party/2and3/sqlalchemy/orm/session.pyi   |   93 -
 typeshed/third_party/2and3/sqlalchemy/orm/util.pyi |   12 -
 typeshed/third_party/2and3/sqlalchemy/pool.pyi     |  118 -
 typeshed/third_party/2and3/sqlalchemy/schema.pyi   |   50 -
 .../third_party/2and3/sqlalchemy/sql/__init__.pyi  |   66 -
 .../2and3/sqlalchemy/sql/annotation.pyi            |   11 -
 typeshed/third_party/2and3/sqlalchemy/sql/base.pyi |   42 -
 typeshed/third_party/2and3/sqlalchemy/sql/ddl.pyi  |   25 -
 typeshed/third_party/2and3/sqlalchemy/sql/dml.pyi  |   20 -
 .../third_party/2and3/sqlalchemy/sql/elements.pyi  |   93 -
 .../2and3/sqlalchemy/sql/expression.pyi            |   87 -
 .../third_party/2and3/sqlalchemy/sql/functions.pyi |   47 -
 .../third_party/2and3/sqlalchemy/sql/naming.pyi    |    1 -
 .../third_party/2and3/sqlalchemy/sql/operators.pyi |   99 -
 .../third_party/2and3/sqlalchemy/sql/schema.pyi    |  126 -
 .../2and3/sqlalchemy/sql/selectable.pyi            |   76 -
 .../third_party/2and3/sqlalchemy/sql/sqltypes.pyi  |   57 -
 .../third_party/2and3/sqlalchemy/sql/type_api.pyi  |   16 -
 .../third_party/2and3/sqlalchemy/sql/visitors.pyi  |   33 -
 typeshed/third_party/2and3/sqlalchemy/types.pyi    |   51 -
 .../third_party/2and3/sqlalchemy/util/__init__.pyi |  133 -
 .../2and3/sqlalchemy/util/_collections.pyi         |  214 --
 .../third_party/2and3/sqlalchemy/util/compat.pyi   |   67 -
 .../2and3/sqlalchemy/util/deprecations.pyi         |   13 -
 .../2and3/sqlalchemy/util/langhelpers.pyi          |  134 -
 .../third_party/{2 => 2and3}/yaml/__init__.pyi     |    2 +-
 .../third_party/{2 => 2and3}/yaml/composer.pyi     |    0
 .../third_party/{2 => 2and3}/yaml/constructor.pyi  |    0
 typeshed/third_party/{2 => 2and3}/yaml/dumper.pyi  |    0
 typeshed/third_party/{2 => 2and3}/yaml/emitter.pyi |    0
 typeshed/third_party/{2 => 2and3}/yaml/error.pyi   |    0
 typeshed/third_party/{2 => 2and3}/yaml/events.pyi  |    0
 typeshed/third_party/{2 => 2and3}/yaml/loader.pyi  |    0
 typeshed/third_party/{2 => 2and3}/yaml/nodes.pyi   |    0
 typeshed/third_party/{2 => 2and3}/yaml/parser.pyi  |    0
 typeshed/third_party/{2 => 2and3}/yaml/reader.pyi  |    0
 .../third_party/{2 => 2and3}/yaml/representer.pyi  |    0
 .../third_party/{2 => 2and3}/yaml/resolver.pyi     |    0
 typeshed/third_party/{2 => 2and3}/yaml/scanner.pyi |    0
 .../third_party/{2 => 2and3}/yaml/serializer.pyi   |    0
 typeshed/third_party/{2 => 2and3}/yaml/tokens.pyi  |    0
 typeshed/third_party/3.6/click/core.pyi            |   10 +-
 typeshed/third_party/3.6/click/decorators.pyi      |   32 +-
 typeshed/third_party/3.6/click/termui.pyi          |    8 +-
 typeshed/third_party/3.6/click/types.pyi           |   22 +-
 typeshed/third_party/3.6/click/utils.pyi           |    8 +-
 typeshed/third_party/3/dateutil/parser.pyi         |   10 +-
 typeshed/third_party/3/dateutil/relativedelta.pyi  |    6 +-
 typeshed/third_party/3/dateutil/tz/_common.pyi     |    2 +-
 typeshed/third_party/3/dateutil/tz/tz.pyi          |    4 +-
 typeshed/third_party/3/enum.pyi                    |   25 +-
 typeshed/third_party/3/itsdangerous.pyi            |   97 +-
 typeshed/third_party/3/lxml/etree.pyi              |  135 +-
 typeshed/third_party/3/requests/api.pyi            |   26 -
 typeshed/third_party/3/requests/auth.pyi           |   41 -
 typeshed/third_party/3/requests/compat.pyi         |    6 -
 typeshed/third_party/3/requests/exceptions.pyi     |   26 -
 typeshed/third_party/3/requests/hooks.pyi          |    8 -
 .../third_party/3/requests/packages/__init__.pyi   |    8 -
 .../3/requests/packages/urllib3/_collections.pyi   |   51 -
 .../requests/packages/urllib3/contrib/__init__.pyi |    3 -
 .../3/requests/packages/urllib3/exceptions.pyi     |   54 -
 .../3/requests/packages/urllib3/fields.pyi         |   16 -
 .../3/requests/packages/urllib3/filepost.pyi       |   19 -
 .../packages/urllib3/packages/__init__.pyi         |    3 -
 .../ssl_match_hostname/_implementation.pyi         |    7 -
 .../3/requests/packages/urllib3/poolmanager.pyi    |   31 -
 .../3/requests/packages/urllib3/request.pyi        |   13 -
 .../requests/packages/urllib3/util/connection.pyi  |   11 -
 .../3/requests/packages/urllib3/util/request.pyi   |   12 -
 .../3/requests/packages/urllib3/util/response.pyi  |    5 -
 .../3/requests/packages/urllib3/util/retry.pyi     |   36 -
 .../3/requests/packages/urllib3/util/timeout.pyi   |   24 -
 .../3/requests/packages/urllib3/util/url.pyi       |   26 -
 typeshed/third_party/3/requests/status_codes.pyi   |    8 -
 typeshed/third_party/3/requests/structures.pyi     |   12 -
 typeshed/third_party/3/requests/utils.pyi          |   52 -
 typeshed/third_party/3/six/moves/__init__.pyi      |   60 +-
 typeshed/third_party/3/six/moves/cPickle.pyi       |    6 -
 .../third_party/3/six/moves/urllib/__init__.pyi    |    5 -
 typeshed/third_party/3/six/moves/urllib/error.pyi  |    5 -
 typeshed/third_party/3/six/moves/urllib/parse.pyi  |   47 +-
 .../third_party/3/six/moves/urllib/request.pyi     |   69 +-
 .../third_party/3/six/moves/urllib/response.pyi    |    7 +
 .../third_party/3/six/moves/urllib/robotparser.pyi |    5 -
 typeshed/third_party/3/six/moves/urllib_error.pyi  |   10 -
 typeshed/third_party/3/six/moves/urllib_parse.pyi  |   20 -
 .../third_party/3/six/moves/urllib_request.pyi     |   41 -
 .../third_party/3/six/moves/urllib_response.pyi    |    1 -
 .../third_party/3/six/moves/urllib_robotparser.pyi |    8 -
 typeshed/third_party/3/typed_ast/__init__.pyi      |    4 +-
 .../3/typed_ast/{ast35.pyi => ast3.pyi}            |   26 +-
 typeshed/third_party/3/typed_ast/conversions.pyi   |    4 +-
 typeshed/third_party/3/werkzeug/wrappers.pyi       |  117 +-
 723 files changed, 12276 insertions(+), 105046 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