[med-svn] [mypy] 02/04: Updated version 0.520 from 'upstream/0.520'
Michael Crusoe
misterc-guest at moszumanska.debian.org
Sat Oct 7 17:16:21 UTC 2017
This is an automated email from the git hooks/post-receive script.
misterc-guest pushed a commit to branch temp
in repository mypy.
commit 0116da048eec0a91f30ac3cb97009e811e9b964b
Merge: 8622a6f 3ebf37a
Author: Michael R. Crusoe <michael.crusoe at gmail.com>
Date: Fri Jul 14 07:10:21 2017 -0700
Updated version 0.520 from 'upstream/0.520'
with Debian dir dd849929a483d2ea6da2ae96208afce611c4bb2a
.gitignore | 30 +
.gitmodules | 3 +
.travis.yml | 23 +
CONTRIBUTING.md | 163 +
CREDITS | 101 +
LICENSE | 227 ++
PKG-INFO | 30 -
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 | 243 ++
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 | 30 -
mypy.egg-info/SOURCES.txt | 946 ------
mypy.egg-info/dependency_links.txt | 1 -
mypy.egg-info/requires.txt | 1 -
mypy.egg-info/top_level.txt | 1 -
mypy/__main__.py | 8 +-
mypy/binder.py | 36 +-
mypy/build.py | 318 +-
mypy/checker.py | 204 +-
mypy/checkexpr.py | 437 ++-
mypy/checkmember.py | 74 +-
mypy/constraints.py | 5 +-
mypy/erasetype.py | 2 +-
mypy/errors.py | 4 +-
mypy/expandtype.py | 2 +-
mypy/experiments.py | 12 +-
mypy/exprtotype.py | 1 +
mypy/fastparse.py | 99 +-
mypy/fastparse2.py | 37 +-
mypy/fixup.py | 32 +-
mypy/join.py | 12 +-
mypy/main.py | 74 +-
mypy/meet.py | 22 +-
mypy/messages.py | 287 +-
mypy/myunit/__init__.py | 383 +++
mypy/myunit/__main__.py | 18 +
mypy/nodes.py | 108 +-
mypy/options.py | 15 +-
mypy/parse.py | 6 +-
mypy/plugin.py | 334 ++
mypy/report.py | 83 +-
mypy/semanal.py | 838 +++--
.../3/email/mime => 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/stats.py | 59 +-
mypy/stubgen.py | 34 +-
mypy/subtypes.py | 55 +-
.../__init__.pyi => mypy/test/__init__.py | 0
.../mime/__init__.pyi => 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 +++++
.../2/wsgiref/__init__.pyi => mypy/test/update.py | 0
mypy/traverser.py | 10 +-
mypy/treetransform.py | 3 +-
mypy/tvar_scope.py | 3 +-
mypy/typeanal.py | 336 +-
mypy/typefixture.py | 12 +-
mypy/types.py | 178 +-
mypy/version.py | 2 +-
mypy/waiter.py | 16 +-
mypy_self_check.ini | 8 +
mypy_strict_optional.ini | 53 +
pinfer/.gitignore | 3 +
pinfer/LICENSE | 27 +
pinfer/README | 47 +
.../distutils/__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 | 21 +
runtests.py | 461 +++
scripts/myunit | 9 +
scripts/stubgen | 0
setup.cfg | 72 +-
setup.py | 8 +-
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 ++++
.../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 | 3516 ++++++++++++++++++++
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-default-plugin.test | 33 +
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 | 882 +++++
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 | 2737 +++++++++++++++
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 | 461 +++
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 | 594 ++++
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 | 32 +
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/contextlib.pyi | 10 +
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 | 73 +
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/reports.test | 276 ++
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/2/BaseHTTPServer.pyi | 47 -
typeshed/stdlib/2/ConfigParser.pyi | 96 -
typeshed/stdlib/2/Cookie.pyi | 44 -
typeshed/stdlib/2/HTMLParser.pyi | 31 -
typeshed/stdlib/2/Queue.pyi | 29 -
typeshed/stdlib/2/SimpleHTTPServer.pyi | 16 -
typeshed/stdlib/2/SocketServer.pyi | 93 -
typeshed/stdlib/2/StringIO.pyi | 30 -
typeshed/stdlib/2/UserDict.pyi | 42 -
typeshed/stdlib/2/UserList.pyi | 3 -
typeshed/stdlib/2/UserString.pyi | 4 -
typeshed/stdlib/2/__builtin__.pyi | 981 ------
typeshed/stdlib/2/_ast.pyi | 328 --
typeshed/stdlib/2/_collections.pyi | 41 -
typeshed/stdlib/2/_functools.pyi | 20 -
typeshed/stdlib/2/_hotshot.pyi | 34 -
typeshed/stdlib/2/_io.pyi | 109 -
typeshed/stdlib/2/_json.pyi | 19 -
typeshed/stdlib/2/_md5.pyi | 13 -
typeshed/stdlib/2/_sha.pyi | 15 -
typeshed/stdlib/2/_sha256.pyi | 23 -
typeshed/stdlib/2/_sha512.pyi | 23 -
typeshed/stdlib/2/_socket.pyi | 287 --
typeshed/stdlib/2/_sre.pyi | 53 -
typeshed/stdlib/2/_struct.pyi | 22 -
typeshed/stdlib/2/_symtable.pyi | 39 -
typeshed/stdlib/2/_warnings.pyi | 11 -
typeshed/stdlib/2/_weakref.pyi | 21 -
typeshed/stdlib/2/_weakrefset.pyi | 14 -
typeshed/stdlib/2/abc.pyi | 29 -
typeshed/stdlib/2/array.pyi | 56 -
typeshed/stdlib/2/ast.pyi | 40 -
typeshed/stdlib/2/atexit.pyi | 5 -
typeshed/stdlib/2/builtins.pyi | 981 ------
typeshed/stdlib/2/cPickle.pyi | 32 -
typeshed/stdlib/2/cStringIO.pyi | 50 -
typeshed/stdlib/2/calendar.pyi | 92 -
typeshed/stdlib/2/collections.pyi | 107 -
typeshed/stdlib/2/commands.pyi | 5 -
typeshed/stdlib/2/compileall.pyi | 10 -
typeshed/stdlib/2/cookielib.pyi | 110 -
typeshed/stdlib/2/csv.pyi | 88 -
typeshed/stdlib/2/datetime.pyi | 209 --
typeshed/stdlib/2/decimal.pyi | 245 --
typeshed/stdlib/2/difflib.pyi | 64 -
typeshed/stdlib/2/distutils/emxccompiler.pyi | 5 -
typeshed/stdlib/2/doctest.pyi | 9 -
typeshed/stdlib/2/email/MIMEText.pyi | 8 -
typeshed/stdlib/2/email/__init__.pyi | 6 -
typeshed/stdlib/2/email/_parseaddr.pyi | 44 -
typeshed/stdlib/2/email/mime/base.pyi | 10 -
typeshed/stdlib/2/email/mime/multipart.pyi | 8 -
typeshed/stdlib/2/email/mime/nonmultipart.pyi | 8 -
typeshed/stdlib/2/email/mime/text.pyi | 8 -
typeshed/stdlib/2/email/utils.pyi | 22 -
typeshed/stdlib/2/encodings/__init__.pyi | 6 -
typeshed/stdlib/2/encodings/utf_8.pyi | 14 -
typeshed/stdlib/2/exceptions.pyi | 80 -
typeshed/stdlib/2/fcntl.pyi | 87 -
typeshed/stdlib/2/fileinput.pyi | 46 -
typeshed/stdlib/2/fnmatch.pyi | 8 -
typeshed/stdlib/2/functools.pyi | 34 -
typeshed/stdlib/2/future_builtins.pyi | 14 -
typeshed/stdlib/2/gc.pyi | 29 -
typeshed/stdlib/2/genericpath.pyi | 14 -
typeshed/stdlib/2/getopt.pyi | 17 -
typeshed/stdlib/2/getpass.pyi | 8 -
typeshed/stdlib/2/gettext.pyi | 43 -
typeshed/stdlib/2/glob.pyi | 4 -
typeshed/stdlib/2/grp.pyi | 11 -
typeshed/stdlib/2/gzip.pyi | 41 -
typeshed/stdlib/2/hashlib.pyi | 31 -
typeshed/stdlib/2/heapq.pyi | 15 -
typeshed/stdlib/2/htmlentitydefs.pyi | 9 -
typeshed/stdlib/2/httplib.pyi | 189 --
typeshed/stdlib/2/imp.pyi | 35 -
typeshed/stdlib/2/importlib.pyi | 3 -
typeshed/stdlib/2/inspect.pyi | 96 -
typeshed/stdlib/2/io.pyi | 104 -
typeshed/stdlib/2/itertools.pyi | 105 -
typeshed/stdlib/2/json.pyi | 97 -
typeshed/stdlib/2/linecache.pyi | 7 -
typeshed/stdlib/2/macpath.pyi | 50 -
typeshed/stdlib/2/markupbase.pyi | 9 -
typeshed/stdlib/2/md5.pyi | 6 -
typeshed/stdlib/2/mimetools.pyi | 31 -
typeshed/stdlib/2/multiprocessing/__init__.pyi | 32 -
typeshed/stdlib/2/multiprocessing/process.pyi | 39 -
typeshed/stdlib/2/multiprocessing/util.pyi | 33 -
typeshed/stdlib/2/ntpath.pyi | 50 -
typeshed/stdlib/2/nturl2path.pyi | 4 -
typeshed/stdlib/2/os/__init__.pyi | 280 --
typeshed/stdlib/2/os/path.pyi | 78 -
typeshed/stdlib/2/os2emxpath.pyi | 50 -
typeshed/stdlib/2/pdb.pyi | 30 -
typeshed/stdlib/2/pickle.pyi | 38 -
typeshed/stdlib/2/pipes.pyi | 13 -
typeshed/stdlib/2/platform.pyi | 45 -
typeshed/stdlib/2/posix.pyi | 205 --
typeshed/stdlib/2/posixpath.pyi | 50 -
typeshed/stdlib/2/pwd.pyi | 17 -
typeshed/stdlib/2/pydoc.pyi | 181 -
typeshed/stdlib/2/random.pyi | 76 -
typeshed/stdlib/2/re.pyi | 99 -
typeshed/stdlib/2/repr.pyi | 31 -
typeshed/stdlib/2/resource.pyi | 33 -
typeshed/stdlib/2/rfc822.pyi | 79 -
typeshed/stdlib/2/robotparser.pyi | 7 -
typeshed/stdlib/2/runpy.pyi | 21 -
typeshed/stdlib/2/select.pyi | 100 -
typeshed/stdlib/2/sets.pyi | 61 -
typeshed/stdlib/2/sha.pyi | 11 -
typeshed/stdlib/2/shelve.pyi | 33 -
typeshed/stdlib/2/shlex.pyi | 27 -
typeshed/stdlib/2/shutil.pyi | 30 -
typeshed/stdlib/2/signal.pyi | 62 -
typeshed/stdlib/2/smtplib.pyi | 90 -
typeshed/stdlib/2/sqlite3/__init__.pyi | 5 -
typeshed/stdlib/2/sqlite3/dbapi2.pyi | 255 --
typeshed/stdlib/2/ssl.pyi | 208 --
typeshed/stdlib/2/stat.pyi | 59 -
typeshed/stdlib/2/string.pyi | 74 -
typeshed/stdlib/2/strop.pyi | 72 -
typeshed/stdlib/2/subprocess.pyi | 115 -
typeshed/stdlib/2/symbol.pyi | 91 -
typeshed/stdlib/2/sys.pyi | 137 -
typeshed/stdlib/2/tempfile.pyi | 104 -
typeshed/stdlib/2/textwrap.pyi | 33 -
typeshed/stdlib/2/thread.pyi | 33 -
typeshed/stdlib/2/time.pyi | 51 -
typeshed/stdlib/2/tokenize.pyi | 139 -
typeshed/stdlib/2/types.pyi | 168 -
typeshed/stdlib/2/typing.pyi | 401 ---
typeshed/stdlib/2/unittest.pyi | 177 -
typeshed/stdlib/2/urllib.pyi | 135 -
typeshed/stdlib/2/urllib2.pyi | 169 -
typeshed/stdlib/2/urlparse.pyi | 68 -
typeshed/stdlib/2/weakref.pyi | 47 -
typeshed/stdlib/2/wsgiref/types.pyi | 34 -
typeshed/stdlib/2/wsgiref/validate.pyi | 47 -
typeshed/stdlib/2/xmlrpclib.pyi | 199 --
typeshed/stdlib/2and3/__future__.pyi | 16 -
typeshed/stdlib/2and3/_bisect.pyi | 11 -
typeshed/stdlib/2and3/_codecs.pyi | 74 -
typeshed/stdlib/2and3/_heapq.pyi | 15 -
typeshed/stdlib/2and3/_random.pyi | 17 -
typeshed/stdlib/2and3/argparse.pyi | 159 -
typeshed/stdlib/2and3/asynchat.pyi | 41 -
typeshed/stdlib/2and3/asyncore.pyi | 132 -
typeshed/stdlib/2and3/base64.pyi | 44 -
typeshed/stdlib/2and3/binascii.pyi | 45 -
typeshed/stdlib/2and3/binhex.pyi | 48 -
typeshed/stdlib/2and3/bisect.pyi | 22 -
typeshed/stdlib/2and3/bz2.pyi | 33 -
typeshed/stdlib/2and3/cProfile.pyi | 18 -
typeshed/stdlib/2and3/cgi.pyi | 119 -
typeshed/stdlib/2and3/cmath.pyi | 34 -
typeshed/stdlib/2and3/cmd.pyi | 41 -
typeshed/stdlib/2and3/code.pyi | 27 -
typeshed/stdlib/2and3/codecs.pyi | 223 --
typeshed/stdlib/2and3/colorsys.pyi | 15 -
typeshed/stdlib/2and3/contextlib.pyi | 58 -
typeshed/stdlib/2and3/copy.pyi | 14 -
typeshed/stdlib/2and3/dis.pyi | 75 -
typeshed/stdlib/2and3/distutils/archive_util.pyi | 12 -
typeshed/stdlib/2and3/distutils/bcppcompiler.pyi | 6 -
typeshed/stdlib/2and3/distutils/ccompiler.pyi | 119 -
typeshed/stdlib/2and3/distutils/cmd.pyi | 15 -
.../stdlib/2and3/distutils/command/bdist_dumb.pyi | 0
.../stdlib/2and3/distutils/command/bdist_msi.pyi | 5 -
.../2and3/distutils/command/bdist_packager.pyi | 0
.../stdlib/2and3/distutils/command/bdist_rpm.pyi | 0
.../2and3/distutils/command/bdist_wininst.pyi | 0
typeshed/stdlib/2and3/distutils/command/build.pyi | 0
.../stdlib/2and3/distutils/command/build_clib.pyi | 0
.../stdlib/2and3/distutils/command/build_ext.pyi | 0
.../stdlib/2and3/distutils/command/build_py.pyi | 8 -
.../2and3/distutils/command/build_scripts.pyi | 0
typeshed/stdlib/2and3/distutils/command/check.pyi | 0
typeshed/stdlib/2and3/distutils/command/clean.pyi | 0
typeshed/stdlib/2and3/distutils/command/config.pyi | 0
.../stdlib/2and3/distutils/command/install.pyi | 0
.../2and3/distutils/command/install_data.pyi | 0
.../2and3/distutils/command/install_headers.pyi | 0
.../stdlib/2and3/distutils/command/install_lib.pyi | 0
.../2and3/distutils/command/install_scripts.pyi | 0
.../stdlib/2and3/distutils/command/register.pyi | 0
typeshed/stdlib/2and3/distutils/command/sdist.pyi | 0
typeshed/stdlib/2and3/distutils/core.pyi | 48 -
.../stdlib/2and3/distutils/cygwinccompiler.pyi | 7 -
typeshed/stdlib/2and3/distutils/debug.pyi | 3 -
typeshed/stdlib/2and3/distutils/dep_util.pyi | 8 -
typeshed/stdlib/2and3/distutils/dir_util.pyi | 15 -
typeshed/stdlib/2and3/distutils/dist.pyi | 7 -
typeshed/stdlib/2and3/distutils/errors.pyi | 4 -
typeshed/stdlib/2and3/distutils/extension.pyi | 39 -
typeshed/stdlib/2and3/distutils/fancy_getopt.pyi | 27 -
typeshed/stdlib/2and3/distutils/file_util.pyi | 12 -
typeshed/stdlib/2and3/distutils/filelist.pyi | 3 -
typeshed/stdlib/2and3/distutils/log.pyi | 0
typeshed/stdlib/2and3/distutils/msvccompiler.pyi | 6 -
typeshed/stdlib/2and3/distutils/spawn.pyi | 8 -
typeshed/stdlib/2and3/distutils/sysconfig.pyi | 19 -
typeshed/stdlib/2and3/distutils/text_file.pyi | 18 -
typeshed/stdlib/2and3/distutils/unixccompiler.pyi | 6 -
typeshed/stdlib/2and3/distutils/util.pyi | 20 -
typeshed/stdlib/2and3/distutils/version.pyi | 35 -
typeshed/stdlib/2and3/errno.pyi | 129 -
typeshed/stdlib/2and3/filecmp.pyi | 48 -
typeshed/stdlib/2and3/fractions.pyi | 94 -
typeshed/stdlib/2and3/ftplib.pyi | 134 -
typeshed/stdlib/2and3/hmac.pyi | 37 -
typeshed/stdlib/2and3/keyword.pyi | 6 -
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 | 104 -
typeshed/stdlib/2and3/logging/__init__.pyi | 397 ---
typeshed/stdlib/2and3/logging/config.pyi | 25 -
typeshed/stdlib/2and3/logging/handlers.pyi | 200 --
typeshed/stdlib/2and3/marshal.pyi | 8 -
typeshed/stdlib/2and3/math.pyi | 66 -
typeshed/stdlib/2and3/mimetypes.pyi | 38 -
typeshed/stdlib/2and3/mmap.pyi | 81 -
typeshed/stdlib/2and3/numbers.pyi | 140 -
typeshed/stdlib/2and3/opcode.pyi | 23 -
typeshed/stdlib/2and3/operator.pyi | 227 --
typeshed/stdlib/2and3/optparse.pyi | 226 --
typeshed/stdlib/2and3/pickletools.pyi | 145 -
typeshed/stdlib/2and3/pkgutil.pyi | 31 -
typeshed/stdlib/2and3/plistlib.pyi | 60 -
typeshed/stdlib/2and3/poplib.pyi | 75 -
typeshed/stdlib/2and3/pprint.pyi | 24 -
typeshed/stdlib/2and3/profile.pyi | 21 -
typeshed/stdlib/2and3/pstats.pyi | 39 -
typeshed/stdlib/2and3/pty.pyi | 20 -
typeshed/stdlib/2and3/py_compile.pyi | 20 -
typeshed/stdlib/2and3/pyclbr.pyi | 40 -
typeshed/stdlib/2and3/quopri.pyi | 8 -
typeshed/stdlib/2and3/readline.pyi | 41 -
typeshed/stdlib/2and3/rlcompleter.pyi | 13 -
typeshed/stdlib/2and3/sched.pyi | 29 -
typeshed/stdlib/2and3/site.pyi | 17 -
typeshed/stdlib/2and3/smtpd.pyi | 87 -
typeshed/stdlib/2and3/sndhdr.pyi | 25 -
typeshed/stdlib/2and3/socket.pyi | 439 ---
typeshed/stdlib/2and3/spwd.pyi | 15 -
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/syslog.pyi | 44 -
typeshed/stdlib/2and3/tabnanny.pyi | 22 -
typeshed/stdlib/2and3/tarfile.pyi | 180 -
typeshed/stdlib/2and3/telnetlib.pyi | 115 -
typeshed/stdlib/2and3/termios.pyi | 246 --
typeshed/stdlib/2and3/threading.pyi | 191 --
typeshed/stdlib/2and3/timeit.pyi | 33 -
typeshed/stdlib/2and3/token.pyi | 71 -
typeshed/stdlib/2and3/trace.pyi | 35 -
typeshed/stdlib/2and3/traceback.pyi | 100 -
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/warnings.pyi | 39 -
typeshed/stdlib/2and3/wave.pyi | 75 -
typeshed/stdlib/2and3/webbrowser.pyi | 100 -
typeshed/stdlib/2and3/xdrlib.pyi | 56 -
typeshed/stdlib/2and3/xml/__init__.pyi | 20 -
typeshed/stdlib/2and3/xml/etree/ElementInclude.pyi | 17 -
typeshed/stdlib/2and3/xml/etree/ElementPath.pyi | 33 -
typeshed/stdlib/2and3/xml/etree/ElementTree.pyi | 160 -
typeshed/stdlib/2and3/xml/etree/__init__.pyi | 0
typeshed/stdlib/2and3/xml/etree/cElementTree.pyi | 3 -
typeshed/stdlib/2and3/xml/sax/__init__.pyi | 35 -
typeshed/stdlib/2and3/xml/sax/handler.pyi | 50 -
typeshed/stdlib/2and3/xml/sax/saxutils.pyi | 58 -
typeshed/stdlib/2and3/xml/sax/xmlreader.pyi | 75 -
typeshed/stdlib/2and3/zipfile.pyi | 94 -
typeshed/stdlib/2and3/zipimport.pyi | 18 -
typeshed/stdlib/2and3/zlib.pyi | 55 -
typeshed/stdlib/3.3/ipaddress.pyi | 200 --
typeshed/stdlib/3.4/_stat.pyi | 69 -
typeshed/stdlib/3.4/_tracemalloc.pyi | 26 -
typeshed/stdlib/3.4/asyncio/__init__.pyi | 107 -
typeshed/stdlib/3.4/asyncio/coroutines.pyi | 9 -
typeshed/stdlib/3.4/asyncio/events.pyi | 220 --
typeshed/stdlib/3.4/asyncio/futures.pyi | 49 -
typeshed/stdlib/3.4/asyncio/locks.pyi | 59 -
typeshed/stdlib/3.4/asyncio/protocols.pyi | 24 -
typeshed/stdlib/3.4/asyncio/queues.pyi | 51 -
typeshed/stdlib/3.4/asyncio/streams.pyi | 106 -
typeshed/stdlib/3.4/asyncio/subprocess.pyi | 67 -
typeshed/stdlib/3.4/asyncio/tasks.pyi | 55 -
typeshed/stdlib/3.4/asyncio/transports.pyi | 38 -
typeshed/stdlib/3.4/enum.pyi | 55 -
typeshed/stdlib/3.4/pathlib.pyi | 117 -
typeshed/stdlib/3.4/selectors.pyi | 90 -
typeshed/stdlib/3.4/statistics.pyi | 24 -
typeshed/stdlib/3.4/tracemalloc.pyi | 65 -
typeshed/stdlib/3.5/zipapp.pyi | 11 -
typeshed/stdlib/3.6/secrets.pyi | 14 -
typeshed/stdlib/3/_ast.pyi | 358 --
typeshed/stdlib/3/_compression.pyi | 20 -
typeshed/stdlib/3/_curses.pyi | 297 --
typeshed/stdlib/3/_dummy_thread.pyi | 11 -
typeshed/stdlib/3/_imp.pyi | 22 -
typeshed/stdlib/3/_importlib_modulespec.pyi | 44 -
typeshed/stdlib/3/_json.pyi | 30 -
typeshed/stdlib/3/_markupbase.pyi | 9 -
typeshed/stdlib/3/_operator.pyi | 65 -
typeshed/stdlib/3/_posixsubprocess.pyi | 14 -
typeshed/stdlib/3/_subprocess.pyi | 38 -
typeshed/stdlib/3/_thread.pyi | 15 -
typeshed/stdlib/3/_warnings.pyi | 11 -
typeshed/stdlib/3/abc.pyi | 24 -
typeshed/stdlib/3/array.pyi | 49 -
typeshed/stdlib/3/ast.pyi | 39 -
typeshed/stdlib/3/atexit.pyi | 9 -
typeshed/stdlib/3/builtins.pyi | 993 ------
typeshed/stdlib/3/calendar.pyi | 95 -
typeshed/stdlib/3/collections/__init__.pyi | 195 --
typeshed/stdlib/3/collections/abc.pyi | 40 -
typeshed/stdlib/3/compileall.pyi | 18 -
typeshed/stdlib/3/concurrent/__init__.pyi | 0
typeshed/stdlib/3/concurrent/futures/__init__.pyi | 3 -
typeshed/stdlib/3/concurrent/futures/_base.pyi | 44 -
typeshed/stdlib/3/concurrent/futures/process.pyi | 14 -
typeshed/stdlib/3/concurrent/futures/thread.pyi | 10 -
typeshed/stdlib/3/configparser.pyi | 188 --
typeshed/stdlib/3/csv.pyi | 77 -
typeshed/stdlib/3/curses/__init__.pyi | 12 -
typeshed/stdlib/3/datetime.pyi | 223 --
typeshed/stdlib/3/decimal.pyi | 255 --
typeshed/stdlib/3/difflib.pyi | 62 -
typeshed/stdlib/3/doctest.pyi | 9 -
typeshed/stdlib/3/email/__init__.pyi | 46 -
typeshed/stdlib/3/email/charset.pyi | 27 -
typeshed/stdlib/3/email/contentmanager.pyi | 22 -
typeshed/stdlib/3/email/encoders.pyi | 8 -
typeshed/stdlib/3/email/errors.pyi | 22 -
typeshed/stdlib/3/email/feedparser.pyi | 28 -
typeshed/stdlib/3/email/generator.pyi | 45 -
typeshed/stdlib/3/email/header.pyi | 25 -
typeshed/stdlib/3/email/headerregistry.pyi | 102 -
typeshed/stdlib/3/email/iterators.pyi | 8 -
typeshed/stdlib/3/email/message.pyi | 130 -
typeshed/stdlib/3/email/mime/application.pyi | 11 -
typeshed/stdlib/3/email/mime/audio.pyi | 11 -
typeshed/stdlib/3/email/mime/base.pyi | 10 -
typeshed/stdlib/3/email/mime/image.pyi | 11 -
typeshed/stdlib/3/email/mime/message.pyi | 7 -
typeshed/stdlib/3/email/mime/multipart.pyi | 12 -
typeshed/stdlib/3/email/mime/nonmultipart.pyi | 5 -
typeshed/stdlib/3/email/mime/text.pyi | 8 -
typeshed/stdlib/3/email/parser.pyi | 61 -
typeshed/stdlib/3/email/policy.pyi | 69 -
typeshed/stdlib/3/email/utils.pyi | 33 -
typeshed/stdlib/3/encodings/__init__.pyi | 6 -
typeshed/stdlib/3/encodings/utf_8.pyi | 14 -
typeshed/stdlib/3/fcntl.pyi | 96 -
typeshed/stdlib/3/fileinput.pyi | 57 -
typeshed/stdlib/3/fnmatch.pyi | 11 -
typeshed/stdlib/3/functools.pyi | 64 -
typeshed/stdlib/3/gc.pyi | 28 -
typeshed/stdlib/3/getopt.pyi | 19 -
typeshed/stdlib/3/getpass.pyi | 13 -
typeshed/stdlib/3/gettext.pyi | 44 -
typeshed/stdlib/3/glob.pyi | 15 -
typeshed/stdlib/3/grp.pyi | 13 -
typeshed/stdlib/3/gzip.pyi | 51 -
typeshed/stdlib/3/hashlib.pyi | 40 -
typeshed/stdlib/3/heapq.pyi | 23 -
typeshed/stdlib/3/html/__init__.pyi | 4 -
typeshed/stdlib/3/html/entities.pyi | 10 -
typeshed/stdlib/3/html/parser.pyi | 33 -
typeshed/stdlib/3/http/__init__.pyi | 68 -
typeshed/stdlib/3/http/client.pyi | 198 --
typeshed/stdlib/3/http/cookiejar.pyi | 112 -
typeshed/stdlib/3/http/cookies.pyi | 31 -
typeshed/stdlib/3/http/server.pyi | 63 -
typeshed/stdlib/3/imp.pyi | 55 -
typeshed/stdlib/3/importlib/__init__.pyi | 18 -
typeshed/stdlib/3/importlib/abc.pyi | 89 -
typeshed/stdlib/3/importlib/machinery.pyi | 185 -
typeshed/stdlib/3/importlib/util.pyi | 55 -
typeshed/stdlib/3/inspect.pyi | 289 --
typeshed/stdlib/3/io.pyi | 259 --
typeshed/stdlib/3/itertools.pyi | 61 -
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 | 5 -
typeshed/stdlib/3/macpath.pyi | 46 -
typeshed/stdlib/3/msvcrt.pyi | 8 -
typeshed/stdlib/3/multiprocessing/__init__.pyi | 99 -
typeshed/stdlib/3/multiprocessing/managers.pyi | 10 -
typeshed/stdlib/3/multiprocessing/pool.pyi | 58 -
typeshed/stdlib/3/multiprocessing/process.pyi | 5 -
typeshed/stdlib/3/nntplib.pyi | 104 -
typeshed/stdlib/3/ntpath.pyi | 46 -
typeshed/stdlib/3/nturl2path.pyi | 2 -
typeshed/stdlib/3/os/__init__.pyi | 435 ---
typeshed/stdlib/3/os/path.pyi | 83 -
typeshed/stdlib/3/pdb.pyi | 30 -
typeshed/stdlib/3/pickle.pyi | 67 -
typeshed/stdlib/3/pipes.pyi | 19 -
typeshed/stdlib/3/platform.pyi | 34 -
typeshed/stdlib/3/posix.pyi | 6 -
typeshed/stdlib/3/posixpath.pyi | 46 -
typeshed/stdlib/3/pwd.pyi | 18 -
typeshed/stdlib/3/queue.pyi | 24 -
typeshed/stdlib/3/random.pyi | 67 -
typeshed/stdlib/3/re.pyi | 106 -
typeshed/stdlib/3/reprlib.pyi | 37 -
typeshed/stdlib/3/resource.pyi | 32 -
typeshed/stdlib/3/runpy.pyi | 21 -
typeshed/stdlib/3/select.pyi | 27 -
typeshed/stdlib/3/shelve.pyi | 31 -
typeshed/stdlib/3/shlex.pyi | 39 -
typeshed/stdlib/3/shutil.pyi | 109 -
typeshed/stdlib/3/signal.pyi | 180 -
typeshed/stdlib/3/smtplib.pyi | 94 -
typeshed/stdlib/3/socketserver.pyi | 93 -
typeshed/stdlib/3/sqlite3/__init__.pyi | 5 -
typeshed/stdlib/3/sqlite3/dbapi2.pyi | 254 --
typeshed/stdlib/3/ssl.pyi | 283 --
typeshed/stdlib/3/stat.pyi | 73 -
typeshed/stdlib/3/string.pyi | 42 -
typeshed/stdlib/3/subprocess.pyi | 345 --
typeshed/stdlib/3/symbol.pyi | 98 -
typeshed/stdlib/3/sys.pyi | 166 -
typeshed/stdlib/3/tempfile.pyi | 90 -
typeshed/stdlib/3/textwrap.pyi | 122 -
typeshed/stdlib/3/time.pyi | 84 -
typeshed/stdlib/3/tkinter/__init__.pyi | 660 ----
typeshed/stdlib/3/tkinter/constants.pyi | 83 -
typeshed/stdlib/3/tkinter/ttk.pyi | 158 -
typeshed/stdlib/3/tokenize.pyi | 112 -
typeshed/stdlib/3/types.pyi | 153 -
typeshed/stdlib/3/typing.pyi | 504 ---
typeshed/stdlib/3/unittest/__init__.pyi | 335 --
typeshed/stdlib/3/unittest/mock.pyi | 169 -
typeshed/stdlib/3/urllib/__init__.pyi | 0
typeshed/stdlib/3/urllib/error.pyi | 11 -
typeshed/stdlib/3/urllib/parse.pyi | 164 -
typeshed/stdlib/3/urllib/request.pyi | 207 --
typeshed/stdlib/3/urllib/response.pyi | 11 -
typeshed/stdlib/3/urllib/robotparser.pyi | 18 -
typeshed/stdlib/3/weakref.pyi | 120 -
typeshed/stdlib/3/wsgiref/__init__.pyi | 0
typeshed/stdlib/3/wsgiref/types.pyi | 33 -
typeshed/stdlib/3/wsgiref/validate.pyi | 47 -
typeshed/tests/mypy_selftest.py | 27 -
typeshed/tests/mypy_test.py | 147 -
typeshed/tests/pytype_test.py | 109 -
typeshed/third_party/2/OpenSSL/__init__.pyi | 0
typeshed/third_party/2/OpenSSL/crypto.pyi | 185 -
typeshed/third_party/2/concurrent/__init__.pyi | 0
.../third_party/2/concurrent/futures/__init__.pyi | 41 -
typeshed/third_party/2/croniter.pyi | 27 -
typeshed/third_party/2/cryptography/__init__.pyi | 0
.../third_party/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/__init__.pyi | 0
typeshed/third_party/2/dateutil/parser.pyi | 39 -
typeshed/third_party/2/dateutil/relativedelta.pyi | 91 -
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/enum.pyi | 19 -
typeshed/third_party/2/fb303/FacebookService.pyi | 301 --
typeshed/third_party/2/fb303/__init__.pyi | 0
typeshed/third_party/2/gflags.pyi | 214 --
typeshed/third_party/2/google/__init__.pyi | 0
.../third_party/2/google/protobuf/__init__.pyi | 1 -
.../third_party/2/google/protobuf/descriptor.pyi | 165 -
.../2/google/protobuf/descriptor_pb2.pyi | 2 -
.../2/google/protobuf/descriptor_pool.pyi | 22 -
.../2/google/protobuf/internal/__init__.pyi | 0
.../2/google/protobuf/internal/decoder.pyi | 34 -
.../2/google/protobuf/internal/encoder.pyi | 38 -
.../google/protobuf/internal/enum_type_wrapper.pyi | 11 -
.../2/google/protobuf/internal/wire_format.pyi | 54 -
typeshed/third_party/2/google/protobuf/message.pyi | 36 -
.../2/google/protobuf/message_factory.pyi | 17 -
.../third_party/2/google/protobuf/reflection.pyi | 10 -
.../2/google/protobuf/symbol_database.pyi | 18 -
typeshed/third_party/2/itsdangerous.pyi | 153 -
typeshed/third_party/2/kazoo/__init__.pyi | 3 -
typeshed/third_party/2/kazoo/client.pyi | 100 -
typeshed/third_party/2/kazoo/exceptions.pyi | 62 -
typeshed/third_party/2/kazoo/recipe/__init__.pyi | 3 -
typeshed/third_party/2/kazoo/recipe/watchers.pyi | 25 -
typeshed/third_party/2/pycurl.pyi | 378 ---
typeshed/third_party/2/pymssql.pyi | 48 -
typeshed/third_party/2/redis/__init__.pyi | 28 -
typeshed/third_party/2/redis/client.pyi | 293 --
typeshed/third_party/2/redis/connection.pyi | 135 -
typeshed/third_party/2/redis/exceptions.pyi | 21 -
typeshed/third_party/2/redis/utils.pyi | 12 -
typeshed/third_party/2/routes/__init__.pyi | 19 -
typeshed/third_party/2/routes/mapper.pyi | 70 -
typeshed/third_party/2/routes/util.pyi | 24 -
typeshed/third_party/2/scribe/__init__.pyi | 0
typeshed/third_party/2/scribe/scribe.pyi | 43 -
typeshed/third_party/2/scribe/ttypes.pyi | 22 -
.../2/selenium/webdriver/remote/webdriver.pyi | 111 -
.../2/selenium/webdriver/remote/webelement.pyi | 65 -
typeshed/third_party/2/simplejson/__init__.pyi | 10 -
typeshed/third_party/2/simplejson/decoder.pyi | 6 -
typeshed/third_party/2/simplejson/encoder.pyi | 9 -
typeshed/third_party/2/simplejson/scanner.pyi | 7 -
typeshed/third_party/2/six/__init__.pyi | 91 -
typeshed/third_party/2/six/moves/__init__.pyi | 66 -
.../third_party/2/six/moves/urllib/__init__.pyi | 5 -
typeshed/third_party/2/six/moves/urllib/error.pyi | 3 -
typeshed/third_party/2/six/moves/urllib/parse.pyi | 24 -
.../third_party/2/six/moves/urllib/request.pyi | 34 -
.../third_party/2/six/moves/urllib/response.pyi | 5 -
.../third_party/2/six/moves/urllib/robotparser.pyi | 1 -
typeshed/third_party/2/thrift/Thrift.pyi | 55 -
typeshed/third_party/2/thrift/__init__.pyi | 0
.../2/thrift/protocol/TBinaryProtocol.pyi | 66 -
.../third_party/2/thrift/protocol/TProtocol.pyi | 80 -
.../third_party/2/thrift/protocol/__init__.pyi | 11 -
.../third_party/2/thrift/transport/TSocket.pyi | 33 -
.../third_party/2/thrift/transport/TTransport.pyi | 111 -
.../third_party/2/thrift/transport/__init__.pyi | 9 -
typeshed/third_party/2/tornado/__init__.pyi | 0
typeshed/third_party/2/tornado/concurrent.pyi | 47 -
typeshed/third_party/2/tornado/gen.pyi | 113 -
typeshed/third_party/2/tornado/httpclient.pyi | 112 -
typeshed/third_party/2/tornado/httpserver.pyi | 45 -
typeshed/third_party/2/tornado/httputil.pyi | 93 -
typeshed/third_party/2/tornado/ioloop.pyi | 88 -
typeshed/third_party/2/tornado/locks.pyi | 49 -
typeshed/third_party/2/tornado/netutil.pyi | 49 -
typeshed/third_party/2/tornado/tcpserver.pyi | 21 -
typeshed/third_party/2/tornado/testing.pyi | 64 -
typeshed/third_party/2/tornado/util.pyi | 50 -
typeshed/third_party/2/tornado/web.pyi | 261 --
typeshed/third_party/2/werkzeug/__init__.pyi | 155 -
typeshed/third_party/2/werkzeug/_compat.pyi | 47 -
typeshed/third_party/2/werkzeug/_internal.pyi | 22 -
typeshed/third_party/2/werkzeug/_reloader.pyi | 33 -
.../third_party/2/werkzeug/contrib/__init__.pyi | 3 -
typeshed/third_party/2/werkzeug/contrib/atom.pyi | 54 -
typeshed/third_party/2/werkzeug/contrib/cache.pyi | 77 -
typeshed/third_party/2/werkzeug/contrib/fixers.pyi | 41 -
typeshed/third_party/2/werkzeug/contrib/iterio.pyi | 42 -
.../third_party/2/werkzeug/contrib/jsrouting.pyi | 14 -
.../third_party/2/werkzeug/contrib/limiter.pyi | 11 -
typeshed/third_party/2/werkzeug/contrib/lint.pyi | 47 -
.../third_party/2/werkzeug/contrib/profiler.pyi | 18 -
.../2/werkzeug/contrib/securecookie.pyi | 30 -
.../third_party/2/werkzeug/contrib/sessions.pyi | 58 -
.../third_party/2/werkzeug/contrib/testtools.pyi | 13 -
.../third_party/2/werkzeug/contrib/wrappers.pyi | 31 -
typeshed/third_party/2/werkzeug/datastructures.pyi | 389 ---
typeshed/third_party/2/werkzeug/debug/__init__.pyi | 40 -
typeshed/third_party/2/werkzeug/debug/console.pyi | 48 -
typeshed/third_party/2/werkzeug/debug/repr.pyi | 37 -
typeshed/third_party/2/werkzeug/debug/tbtools.pyi | 67 -
typeshed/third_party/2/werkzeug/exceptions.pyi | 140 -
typeshed/third_party/2/werkzeug/filesystem.pyi | 11 -
typeshed/third_party/2/werkzeug/formparser.pyi | 44 -
typeshed/third_party/2/werkzeug/http.pyi | 41 -
typeshed/third_party/2/werkzeug/local.pyi | 104 -
typeshed/third_party/2/werkzeug/posixemulation.pyi | 11 -
typeshed/third_party/2/werkzeug/routing.pyi | 181 -
typeshed/third_party/2/werkzeug/script.pyi | 16 -
typeshed/third_party/2/werkzeug/security.pyi | 16 -
typeshed/third_party/2/werkzeug/serving.pyi | 83 -
typeshed/third_party/2/werkzeug/test.pyi | 85 -
typeshed/third_party/2/werkzeug/testapp.pyi | 13 -
typeshed/third_party/2/werkzeug/urls.pyi | 69 -
typeshed/third_party/2/werkzeug/useragents.pyi | 18 -
typeshed/third_party/2/werkzeug/utils.pyi | 53 -
typeshed/third_party/2/werkzeug/wrappers.pyi | 201 --
typeshed/third_party/2/werkzeug/wsgi.pyi | 88 -
typeshed/third_party/2and3/Crypto/Cipher/AES.pyi | 23 -
typeshed/third_party/2and3/Crypto/Cipher/ARC2.pyi | 23 -
typeshed/third_party/2and3/Crypto/Cipher/ARC4.pyi | 19 -
.../third_party/2and3/Crypto/Cipher/Blowfish.pyi | 23 -
typeshed/third_party/2and3/Crypto/Cipher/CAST.pyi | 23 -
typeshed/third_party/2and3/Crypto/Cipher/DES.pyi | 23 -
typeshed/third_party/2and3/Crypto/Cipher/DES3.pyi | 24 -
.../third_party/2and3/Crypto/Cipher/PKCS1_OAEP.pyi | 17 -
.../third_party/2and3/Crypto/Cipher/PKCS1_v1_5.pyi | 17 -
typeshed/third_party/2and3/Crypto/Cipher/XOR.pyi | 20 -
.../third_party/2and3/Crypto/Cipher/__init__.pyi | 15 -
.../third_party/2and3/Crypto/Cipher/blockalgo.pyi | 21 -
typeshed/third_party/2and3/Crypto/Hash/HMAC.pyi | 20 -
typeshed/third_party/2and3/Crypto/Hash/MD2.pyi | 17 -
typeshed/third_party/2and3/Crypto/Hash/MD4.pyi | 17 -
typeshed/third_party/2and3/Crypto/Hash/MD5.pyi | 17 -
typeshed/third_party/2and3/Crypto/Hash/RIPEMD.pyi | 17 -
typeshed/third_party/2and3/Crypto/Hash/SHA.pyi | 17 -
typeshed/third_party/2and3/Crypto/Hash/SHA224.pyi | 17 -
typeshed/third_party/2and3/Crypto/Hash/SHA256.pyi | 17 -
typeshed/third_party/2and3/Crypto/Hash/SHA384.pyi | 17 -
typeshed/third_party/2and3/Crypto/Hash/SHA512.pyi | 17 -
.../third_party/2and3/Crypto/Hash/__init__.pyi | 15 -
.../third_party/2and3/Crypto/Hash/hashalgo.pyi | 15 -
.../2and3/Crypto/Protocol/AllOrNothing.pyi | 14 -
.../third_party/2and3/Crypto/Protocol/Chaffing.pyi | 9 -
typeshed/third_party/2and3/Crypto/Protocol/KDF.pyi | 11 -
.../third_party/2and3/Crypto/Protocol/__init__.pyi | 8 -
.../third_party/2and3/Crypto/PublicKey/DSA.pyi | 31 -
.../third_party/2and3/Crypto/PublicKey/ElGamal.pyi | 23 -
.../third_party/2and3/Crypto/PublicKey/RSA.pyi | 36 -
.../2and3/Crypto/PublicKey/__init__.pyi | 8 -
.../third_party/2and3/Crypto/PublicKey/pubkey.pyi | 25 -
.../Crypto/Random/Fortuna/FortunaAccumulator.pyi | 29 -
.../Crypto/Random/Fortuna/FortunaGenerator.pyi | 20 -
.../2and3/Crypto/Random/Fortuna/SHAd256.pyi | 17 -
.../2and3/Crypto/Random/Fortuna/__init__.pyi | 3 -
.../2and3/Crypto/Random/OSRNG/__init__.pyi | 5 -
.../2and3/Crypto/Random/OSRNG/fallback.pyi | 9 -
.../2and3/Crypto/Random/OSRNG/posix.pyi | 10 -
.../2and3/Crypto/Random/OSRNG/rng_base.pyi | 15 -
.../third_party/2and3/Crypto/Random/__init__.pyi | 5 -
.../third_party/2and3/Crypto/Random/random.pyi | 21 -
.../2and3/Crypto/Signature/PKCS1_PSS.pyi | 13 -
.../2and3/Crypto/Signature/PKCS1_v1_5.pyi | 12 -
.../2and3/Crypto/Signature/__init__.pyi | 7 -
typeshed/third_party/2and3/Crypto/Util/Counter.pyi | 7 -
typeshed/third_party/2and3/Crypto/Util/RFC1751.pyi | 13 -
.../third_party/2and3/Crypto/Util/__init__.pyi | 10 -
typeshed/third_party/2and3/Crypto/Util/asn1.pyi | 49 -
typeshed/third_party/2and3/Crypto/Util/number.pyi | 26 -
.../third_party/2and3/Crypto/Util/randpool.pyi | 20 -
typeshed/third_party/2and3/Crypto/Util/strxor.pyi | 6 -
typeshed/third_party/2and3/Crypto/__init__.pyi | 11 -
typeshed/third_party/2and3/Crypto/pct_warnings.pyi | 11 -
.../third_party/2and3/atomicwrites/__init__.pyi | 16 -
typeshed/third_party/2and3/backports/__init__.pyi | 0
.../2and3/backports/ssl_match_hostname.pyi | 3 -
typeshed/third_party/2and3/backports_abc.pyi | 19 -
typeshed/third_party/2and3/boto/__init__.pyi | 80 -
typeshed/third_party/2and3/boto/auth.pyi | 112 -
typeshed/third_party/2and3/boto/auth_handler.pyi | 13 -
typeshed/third_party/2and3/boto/compat.pyi | 14 -
typeshed/third_party/2and3/boto/connection.pyi | 119 -
typeshed/third_party/2and3/boto/ec2/__init__.pyi | 11 -
typeshed/third_party/2and3/boto/elb/__init__.pyi | 43 -
typeshed/third_party/2and3/boto/exception.pyi | 150 -
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/plugin.pyi | 13 -
typeshed/third_party/2and3/boto/regioninfo.pyi | 20 -
typeshed/third_party/2and3/boto/s3/__init__.pyi | 16 -
typeshed/third_party/2and3/boto/s3/acl.pyi | 43 -
typeshed/third_party/2and3/boto/s3/bucket.pyi | 98 -
.../2and3/boto/s3/bucketlistresultset.pyi | 44 -
.../third_party/2and3/boto/s3/bucketlogging.pyi | 15 -
typeshed/third_party/2and3/boto/s3/connection.pyi | 71 -
typeshed/third_party/2and3/boto/s3/cors.pyi | 23 -
.../third_party/2and3/boto/s3/deletemarker.pyi | 16 -
typeshed/third_party/2and3/boto/s3/key.pyi | 91 -
typeshed/third_party/2and3/boto/s3/keyfile.pyi | 33 -
typeshed/third_party/2and3/boto/s3/lifecycle.pyi | 55 -
typeshed/third_party/2and3/boto/s3/multidelete.pyi | 31 -
typeshed/third_party/2and3/boto/s3/multipart.pyi | 53 -
typeshed/third_party/2and3/boto/s3/prefix.pyi | 14 -
typeshed/third_party/2and3/boto/s3/tagging.pyi | 26 -
typeshed/third_party/2and3/boto/s3/user.pyi | 14 -
typeshed/third_party/2and3/boto/s3/website.pyi | 66 -
typeshed/third_party/2and3/certifi.pyi | 2 -
.../third_party/2and3/characteristic/__init__.pyi | 34 -
typeshed/third_party/2and3/jinja2/__init__.pyi | 11 -
typeshed/third_party/2and3/jinja2/_compat.pyi | 38 -
typeshed/third_party/2and3/jinja2/_stringdefs.pyi | 44 -
typeshed/third_party/2and3/jinja2/bccache.pyi | 48 -
typeshed/third_party/2and3/jinja2/compiler.pyi | 180 -
typeshed/third_party/2and3/jinja2/constants.pyi | 5 -
typeshed/third_party/2and3/jinja2/debug.pyi | 41 -
typeshed/third_party/2and3/jinja2/defaults.pyi | 25 -
typeshed/third_party/2and3/jinja2/environment.pyi | 119 -
typeshed/third_party/2and3/jinja2/exceptions.pyi | 37 -
typeshed/third_party/2and3/jinja2/ext.pyi | 62 -
typeshed/third_party/2and3/jinja2/filters.pyi | 61 -
typeshed/third_party/2and3/jinja2/lexer.pyi | 121 -
typeshed/third_party/2and3/jinja2/loaders.pyi | 74 -
typeshed/third_party/2and3/jinja2/meta.pyi | 15 -
typeshed/third_party/2and3/jinja2/nodes.pyi | 254 --
typeshed/third_party/2and3/jinja2/optimizer.pyi | 33 -
typeshed/third_party/2and3/jinja2/parser.pyi | 64 -
typeshed/third_party/2and3/jinja2/runtime.pyi | 134 -
typeshed/third_party/2and3/jinja2/sandbox.pyi | 38 -
typeshed/third_party/2and3/jinja2/tests.pyi | 28 -
typeshed/third_party/2and3/jinja2/utils.pyi | 64 -
typeshed/third_party/2and3/jinja2/visitor.pyi | 12 -
typeshed/third_party/2and3/markupsafe/__init__.pyi | 58 -
typeshed/third_party/2and3/markupsafe/_compat.pyi | 23 -
.../third_party/2and3/markupsafe/_constants.pyi | 7 -
typeshed/third_party/2and3/markupsafe/_native.pyi | 11 -
.../third_party/2and3/markupsafe/_speedups.pyi | 11 -
typeshed/third_party/2and3/mypy_extensions.pyi | 17 -
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 -
typeshed/third_party/2and3/pytz/__init__.pyi | 39 -
typeshed/third_party/2and3/pytz/lazy.pyi | 13 -
typeshed/third_party/2and3/requests/__init__.pyi | 39 -
typeshed/third_party/2and3/requests/adapters.pyi | 72 -
typeshed/third_party/2and3/requests/api.pyi | 26 -
typeshed/third_party/2and3/requests/auth.pyi | 41 -
typeshed/third_party/2and3/requests/compat.pyi | 6 -
typeshed/third_party/2and3/requests/cookies.pyi | 67 -
typeshed/third_party/2and3/requests/exceptions.pyi | 26 -
typeshed/third_party/2and3/requests/hooks.pyi | 8 -
typeshed/third_party/2and3/requests/models.pyi | 136 -
.../2and3/requests/packages/__init__.pyi | 8 -
.../2and3/requests/packages/urllib3/__init__.pyi | 35 -
.../requests/packages/urllib3/_collections.pyi | 51 -
.../2and3/requests/packages/urllib3/connection.pyi | 71 -
.../requests/packages/urllib3/connectionpool.pyi | 89 -
.../requests/packages/urllib3/contrib/__init__.pyi | 3 -
.../2and3/requests/packages/urllib3/exceptions.pyi | 54 -
.../2and3/requests/packages/urllib3/fields.pyi | 16 -
.../2and3/requests/packages/urllib3/filepost.pyi | 19 -
.../packages/urllib3/packages/__init__.pyi | 3 -
.../packages/ssl_match_hostname/__init__.pyi | 8 -
.../ssl_match_hostname/_implementation.pyi | 7 -
.../requests/packages/urllib3/poolmanager.pyi | 31 -
.../2and3/requests/packages/urllib3/request.pyi | 13 -
.../2and3/requests/packages/urllib3/response.pyi | 56 -
.../requests/packages/urllib3/util/__init__.pyi | 29 -
.../requests/packages/urllib3/util/connection.pyi | 11 -
.../requests/packages/urllib3/util/request.pyi | 12 -
.../requests/packages/urllib3/util/response.pyi | 5 -
.../2and3/requests/packages/urllib3/util/retry.pyi | 36 -
.../2and3/requests/packages/urllib3/util/ssl_.pyi | 24 -
.../requests/packages/urllib3/util/timeout.pyi | 24 -
.../2and3/requests/packages/urllib3/util/url.pyi | 26 -
typeshed/third_party/2and3/requests/sessions.pyi | 110 -
.../third_party/2and3/requests/status_codes.pyi | 8 -
typeshed/third_party/2and3/requests/structures.pyi | 12 -
typeshed/third_party/2and3/requests/utils.pyi | 52 -
typeshed/third_party/2and3/singledispatch.pyi | 17 -
typeshed/third_party/2and3/ujson.pyi | 51 -
typeshed/third_party/2and3/yaml/__init__.pyi | 51 -
typeshed/third_party/2and3/yaml/composer.pyi | 21 -
typeshed/third_party/2and3/yaml/constructor.pyi | 70 -
typeshed/third_party/2and3/yaml/dumper.pyi | 17 -
typeshed/third_party/2and3/yaml/emitter.pyi | 110 -
typeshed/third_party/2and3/yaml/error.pyi | 25 -
typeshed/third_party/2and3/yaml/events.pyi | 66 -
typeshed/third_party/2and3/yaml/loader.pyi | 19 -
typeshed/third_party/2and3/yaml/nodes.pyi | 35 -
typeshed/third_party/2and3/yaml/parser.pyi | 48 -
typeshed/third_party/2and3/yaml/reader.pyi | 38 -
typeshed/third_party/2and3/yaml/representer.pyi | 56 -
typeshed/third_party/2and3/yaml/resolver.pyi | 26 -
typeshed/third_party/2and3/yaml/scanner.pyi | 100 -
typeshed/third_party/2and3/yaml/serializer.pyi | 27 -
typeshed/third_party/2and3/yaml/tokens.pyi | 97 -
typeshed/third_party/3.6/click/__init__.pyi | 98 -
typeshed/third_party/3.6/click/core.pyi | 435 ---
typeshed/third_party/3.6/click/decorators.pyi | 222 --
typeshed/third_party/3.6/click/exceptions.pyi | 91 -
typeshed/third_party/3.6/click/formatting.pyi | 89 -
typeshed/third_party/3.6/click/globals.pyi | 17 -
typeshed/third_party/3.6/click/parser.pyi | 102 -
typeshed/third_party/3.6/click/termui.pyi | 147 -
typeshed/third_party/3.6/click/types.pyi | 283 --
typeshed/third_party/3.6/click/utils.pyi | 118 -
typeshed/third_party/3/dateutil/__init__.pyi | 0
typeshed/third_party/3/dateutil/parser.pyi | 52 -
typeshed/third_party/3/dateutil/relativedelta.pyi | 112 -
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/docutils/__init__.pyi | 1 -
typeshed/third_party/3/docutils/examples.pyi | 3 -
typeshed/third_party/3/docutils/nodes.pyi | 8 -
.../third_party/3/docutils/parsers/__init__.pyi | 1 -
.../3/docutils/parsers/rst/__init__.pyi | 0
.../third_party/3/docutils/parsers/rst/nodes.pyi | 1 -
.../third_party/3/docutils/parsers/rst/roles.pyi | 10 -
.../third_party/3/docutils/parsers/rst/states.pyi | 5 -
typeshed/third_party/3/enum.pyi | 55 -
typeshed/third_party/3/itsdangerous.pyi | 157 -
typeshed/third_party/3/lxml/__init__.pyi | 0
typeshed/third_party/3/lxml/etree.pyi | 128 -
typeshed/third_party/3/lxml/objectify.pyi | 13 -
typeshed/third_party/3/pkg_resources.pyi | 313 --
typeshed/third_party/3/six/__init__.pyi | 103 -
typeshed/third_party/3/six/moves/__init__.pyi | 72 -
.../third_party/3/six/moves/urllib/__init__.pyi | 5 -
typeshed/third_party/3/six/moves/urllib/error.pyi | 3 -
typeshed/third_party/3/six/moves/urllib/parse.pyi | 27 -
.../third_party/3/six/moves/urllib/request.pyi | 37 -
.../third_party/3/six/moves/urllib/response.pyi | 8 -
.../third_party/3/six/moves/urllib/robotparser.pyi | 1 -
typeshed/third_party/3/typed_ast/__init__.pyi | 2 -
typeshed/third_party/3/typed_ast/ast27.pyi | 360 --
typeshed/third_party/3/typed_ast/ast3.pyi | 412 ---
typeshed/third_party/3/typed_ast/conversions.pyi | 4 -
typeshed/third_party/3/werkzeug/__init__.pyi | 154 -
typeshed/third_party/3/werkzeug/_compat.pyi | 47 -
typeshed/third_party/3/werkzeug/_internal.pyi | 22 -
typeshed/third_party/3/werkzeug/_reloader.pyi | 33 -
.../third_party/3/werkzeug/contrib/__init__.pyi | 3 -
typeshed/third_party/3/werkzeug/contrib/atom.pyi | 54 -
typeshed/third_party/3/werkzeug/contrib/cache.pyi | 87 -
typeshed/third_party/3/werkzeug/contrib/fixers.pyi | 41 -
typeshed/third_party/3/werkzeug/contrib/iterio.pyi | 42 -
.../third_party/3/werkzeug/contrib/jsrouting.pyi | 14 -
.../third_party/3/werkzeug/contrib/limiter.pyi | 11 -
typeshed/third_party/3/werkzeug/contrib/lint.pyi | 47 -
.../third_party/3/werkzeug/contrib/profiler.pyi | 18 -
.../3/werkzeug/contrib/securecookie.pyi | 30 -
.../third_party/3/werkzeug/contrib/sessions.pyi | 58 -
.../third_party/3/werkzeug/contrib/testtools.pyi | 13 -
.../third_party/3/werkzeug/contrib/wrappers.pyi | 31 -
typeshed/third_party/3/werkzeug/datastructures.pyi | 389 ---
typeshed/third_party/3/werkzeug/debug/__init__.pyi | 43 -
typeshed/third_party/3/werkzeug/debug/console.pyi | 48 -
typeshed/third_party/3/werkzeug/debug/repr.pyi | 37 -
typeshed/third_party/3/werkzeug/debug/tbtools.pyi | 67 -
typeshed/third_party/3/werkzeug/exceptions.pyi | 152 -
typeshed/third_party/3/werkzeug/filesystem.pyi | 11 -
typeshed/third_party/3/werkzeug/formparser.pyi | 44 -
typeshed/third_party/3/werkzeug/http.pyi | 42 -
typeshed/third_party/3/werkzeug/local.pyi | 104 -
typeshed/third_party/3/werkzeug/posixemulation.pyi | 11 -
typeshed/third_party/3/werkzeug/routing.pyi | 182 -
typeshed/third_party/3/werkzeug/script.pyi | 16 -
typeshed/third_party/3/werkzeug/security.pyi | 16 -
typeshed/third_party/3/werkzeug/serving.pyi | 84 -
typeshed/third_party/3/werkzeug/test.pyi | 85 -
typeshed/third_party/3/werkzeug/testapp.pyi | 13 -
typeshed/third_party/3/werkzeug/urls.pyi | 71 -
typeshed/third_party/3/werkzeug/useragents.pyi | 18 -
typeshed/third_party/3/werkzeug/utils.pyi | 53 -
typeshed/third_party/3/werkzeug/wrappers.pyi | 201 --
typeshed/third_party/3/werkzeug/wsgi.pyi | 88 -
xml/mypy-html.css | 2 +-
xml/mypy.xsd | 2 +
1218 files changed, 101678 insertions(+), 54877 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