[med-svn] [mypy] 03/06: Merge tag 'upstream/0.470-complete'
Michael Crusoe
misterc-guest at moszumanska.debian.org
Thu Feb 2 08:22:57 UTC 2017
This is an automated email from the git hooks/post-receive script.
misterc-guest pushed a commit to branch master
in repository mypy.
commit c0af0839dc2783b91d67c5151e49e1dafb0f4fb9
Merge: 6279609 51ba11b
Author: Michael R. Crusoe <michael.crusoe at gmail.com>
Date: Wed Feb 1 00:51:39 2017 -0800
Merge tag 'upstream/0.470-complete'
Upstream version 0.470-complete
.gitignore | 29 -
.gitmodules | 3 -
.travis.yml | 20 -
CONTRIBUTING.md | 152 -
CREDITS | 101 -
LICENSE | 228 --
PKG-INFO | 30 +
README.md | 307 --
appveyor.yml | 32 -
build-requirements.txt | 2 -
conftest.py | 4 -
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 | 402 ---
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 | 30 +
mypy.egg-info/SOURCES.txt | 984 ++++++
mypy.egg-info/dependency_links.txt | 1 +
mypy.egg-info/requires.txt | 1 +
mypy.egg-info/top_level.txt | 1 +
mypy/myunit/__init__.py | 380 ---
mypy/myunit/__main__.py | 18 -
mypy/test/config.py | 19 -
mypy/test/data.py | 468 ---
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_self_check.ini | 15 -
mypy_strict_optional.ini | 5 -
pinfer/.gitignore | 3 -
pinfer/LICENSE | 27 -
pinfer/README | 47 -
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/myunit | 9 -
setup.cfg | 54 +-
test-data/.flake8 | 1 -
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 -----------
.../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/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 | 376 ---
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 | 2430 --------------
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 | 191 --
test-data/unit/check-flags.test | 242 --
test-data/unit/check-functions.test | 1666 ----------
test-data/unit/check-generic-subtyping.test | 749 -----
test-data/unit/check-generics.test | 1419 --------
test-data/unit/check-ignore.test | 218 --
test-data/unit/check-incremental.test | 1780 ----------
test-data/unit/check-inference-context.test | 820 -----
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 | 87 -
test-data/unit/check-newtype.test | 319 --
test-data/unit/check-optional.test | 527 ---
test-data/unit/check-overloading.test | 759 -----
test-data/unit/check-python2.test | 221 --
test-data/unit/check-selftype.test | 358 ---
test-data/unit/check-semanal-error.test | 81 -
test-data/unit/check-statements.test | 1322 --------
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 | 140 -
test-data/unit/check-unreachable-code.test | 459 ---
test-data/unit/check-unsupported.test | 15 -
test-data/unit/check-varargs.test | 590 ----
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 | 14 -
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 | 34 -
test-data/unit/fixtures/exception.pyi | 12 -
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 | 56 -
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 | 18 -
test-data/unit/fixtures/transform.pyi | 30 -
test-data/unit/fixtures/tuple-simple.pyi | 20 -
test-data/unit/fixtures/tuple.pyi | 28 -
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 | 496 ---
test-data/unit/parse-python2.test | 399 ---
test-data/unit/parse.test | 3401 --------------------
test-data/unit/python2eval.test | 471 ---
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 | 1323 --------
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 | 925 ------
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 | 1476 ---------
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/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/SocketServer.pyi | 93 +
typeshed/stdlib/2/StringIO.pyi | 30 +
typeshed/stdlib/2/UserDict.pyi | 38 +
typeshed/stdlib/2/UserList.pyi | 3 +
typeshed/stdlib/2/UserString.pyi | 4 +
typeshed/stdlib/2/__builtin__.pyi | 947 ++++++
typeshed/stdlib/2/__future__.pyi | 13 +
typeshed/stdlib/2/_ast.pyi | 328 ++
typeshed/stdlib/2/_codecs.pyi | 55 +
typeshed/stdlib/2/_collections.pyi | 41 +
typeshed/stdlib/2/_functools.pyi | 20 +
typeshed/stdlib/2/_hotshot.pyi | 34 +
typeshed/stdlib/2/_io.pyi | 107 +
typeshed/stdlib/2/_json.pyi | 19 +
typeshed/stdlib/2/_md5.pyi | 13 +
typeshed/stdlib/2/_random.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 | 37 +
typeshed/stdlib/2/array.pyi | 56 +
typeshed/stdlib/2/ast.pyi | 40 +
typeshed/stdlib/2/atexit.pyi | 5 +
typeshed/stdlib/2/base64.pyi | 25 +
typeshed/stdlib/2/binascii.pyi | 21 +
typeshed/stdlib/2/builtins.pyi | 947 ++++++
typeshed/stdlib/2/cPickle.pyi | 32 +
typeshed/stdlib/2/cStringIO.pyi | 50 +
typeshed/stdlib/2/calendar.pyi | 92 +
typeshed/stdlib/2/codecs.pyi | 203 ++
typeshed/stdlib/2/collections.pyi | 108 +
typeshed/stdlib/2/commands.pyi | 5 +
typeshed/stdlib/2/compileall.pyi | 7 +
typeshed/stdlib/2/cookielib.pyi | 110 +
typeshed/stdlib/2/copy.pyi | 10 +
typeshed/stdlib/2/csv.pyi | 88 +
typeshed/stdlib/2/datetime.pyi | 212 ++
typeshed/stdlib/2/decimal.pyi | 245 ++
typeshed/stdlib/2/difflib.pyi | 64 +
.../stdlib/2/distutils/__init__.pyi | 0
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 +
.../stdlib/2/email/mime/__init__.pyi | 0
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 | 6 +
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 | 27 +
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 | 88 +
typeshed/stdlib/2/io.pyi | 105 +
typeshed/stdlib/2/itertools.pyi | 87 +
typeshed/stdlib/2/json.pyi | 97 +
typeshed/stdlib/2/linecache.pyi | 7 +
typeshed/stdlib/2/markupbase.pyi | 9 +
typeshed/stdlib/2/md5.pyi | 11 +
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/optparse.pyi | 249 ++
typeshed/stdlib/2/os/__init__.pyi | 303 ++
typeshed/stdlib/2/os/path.pyi | 65 +
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/pprint.pyi | 24 +
typeshed/stdlib/2/pwd.pyi | 17 +
typeshed/stdlib/2/quopri.pyi | 8 +
typeshed/stdlib/2/random.pyi | 76 +
typeshed/stdlib/2/re.pyi | 99 +
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/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/socket.pyi | 362 +++
typeshed/stdlib/2/spwd.pyi | 15 +
typeshed/stdlib/2/sqlite3/__init__.pyi | 5 +
typeshed/stdlib/2/sqlite3/dbapi2.pyi | 256 ++
typeshed/stdlib/2/ssl.pyi | 204 ++
typeshed/stdlib/2/stat.pyi | 59 +
typeshed/stdlib/2/string.pyi | 74 +
typeshed/stdlib/2/strop.pyi | 72 +
typeshed/stdlib/2/struct.pyi | 28 +
typeshed/stdlib/2/subprocess.pyi | 109 +
typeshed/stdlib/2/sys.pyi | 137 +
typeshed/stdlib/2/syslog.pyi | 38 +
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/token.pyi | 62 +
typeshed/stdlib/2/tokenize.pyi | 143 +
typeshed/stdlib/2/types.pyi | 161 +
typeshed/stdlib/2/typing.pyi | 360 +++
typeshed/stdlib/2/unicodedata.pyi | 40 +
typeshed/stdlib/2/unittest.pyi | 176 +
typeshed/stdlib/2/urllib.pyi | 135 +
typeshed/stdlib/2/urllib2.pyi | 160 +
typeshed/stdlib/2/urlparse.pyi | 68 +
typeshed/stdlib/2/uuid.pyi | 36 +
typeshed/stdlib/2/weakref.pyi | 47 +
.../stdlib/2/wsgiref/__init__.pyi | 0
typeshed/stdlib/2/wsgiref/validate.pyi | 47 +
.../stdlib/2/xml/__init__.pyi | 0
typeshed/stdlib/2/xml/etree/ElementInclude.pyi | 19 +
typeshed/stdlib/2/xml/etree/ElementPath.pyi | 35 +
typeshed/stdlib/2/xml/etree/ElementTree.pyi | 116 +
.../stdlib/2/xml/etree/__init__.pyi | 0
typeshed/stdlib/2/xml/etree/cElementTree.pyi | 5 +
typeshed/stdlib/2/xxsubtype.pyi | 17 +
typeshed/stdlib/2/zlib.pyi | 42 +
typeshed/stdlib/2and3/_bisect.pyi | 11 +
typeshed/stdlib/2and3/_heapq.pyi | 15 +
typeshed/stdlib/2and3/argparse.pyi | 155 +
typeshed/stdlib/2and3/asynchat.pyi | 41 +
typeshed/stdlib/2and3/asyncore.pyi | 132 +
typeshed/stdlib/2and3/bisect.pyi | 22 +
typeshed/stdlib/2and3/bz2.pyi | 33 +
typeshed/stdlib/2and3/cProfile.pyi | 18 +
typeshed/stdlib/2and3/cmath.pyi | 34 +
typeshed/stdlib/2and3/code.pyi | 27 +
typeshed/stdlib/2and3/colorsys.pyi | 15 +
typeshed/stdlib/2and3/contextlib.pyi | 53 +
.../stdlib/2and3/distutils/__init__.pyi | 0
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/__init__.pyi | 0
.../stdlib/2and3/distutils/command/bdist.pyi | 0
.../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
.../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
.../stdlib/2and3/distutils/command/check.pyi | 0
.../stdlib/2and3/distutils/command/clean.pyi | 0
.../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
.../stdlib/2and3/distutils/command/sdist.pyi | 0
typeshed/stdlib/2and3/distutils/core.pyi | 35 +
.../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 +
.../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/fractions.pyi | 94 +
typeshed/stdlib/2and3/hmac.pyi | 35 +
typeshed/stdlib/2and3/keyword.pyi | 6 +
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 | 79 +
typeshed/stdlib/2and3/numbers.pyi | 140 +
typeshed/stdlib/2and3/operator.pyi | 227 ++
typeshed/stdlib/2and3/pkgutil.pyi | 31 +
typeshed/stdlib/2and3/plistlib.pyi | 60 +
typeshed/stdlib/2and3/profile.pyi | 21 +
typeshed/stdlib/2and3/pstats.pyi | 33 +
typeshed/stdlib/2and3/readline.pyi | 41 +
typeshed/stdlib/2and3/rlcompleter.pyi | 13 +
typeshed/stdlib/2and3/site.pyi | 17 +
typeshed/stdlib/2and3/tarfile.pyi | 178 +
typeshed/stdlib/2and3/termios.pyi | 246 ++
typeshed/stdlib/2and3/threading.pyi | 191 ++
typeshed/stdlib/2and3/traceback.pyi | 100 +
typeshed/stdlib/2and3/warnings.pyi | 39 +
typeshed/stdlib/2and3/webbrowser.pyi | 100 +
typeshed/stdlib/2and3/xml/__init__.pyi | 20 +
typeshed/stdlib/2and3/xml/sax/__init__.pyi | 34 +
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 +
.../stdlib/3.2/xml/__init__.pyi | 0
typeshed/stdlib/3.2/xml/etree/ElementInclude.pyi | 19 +
typeshed/stdlib/3.2/xml/etree/ElementPath.pyi | 35 +
typeshed/stdlib/3.2/xml/etree/ElementTree.pyi | 120 +
.../stdlib/3.2/xml/etree/__init__.pyi | 0
typeshed/stdlib/3.2/xml/etree/cElementTree.pyi | 5 +
typeshed/stdlib/3.3/ipaddress.pyi | 200 ++
.../stdlib/3.3/xml/__init__.pyi | 0
typeshed/stdlib/3.3/xml/etree/ElementInclude.pyi | 19 +
typeshed/stdlib/3.3/xml/etree/ElementPath.pyi | 35 +
typeshed/stdlib/3.3/xml/etree/ElementTree.pyi | 113 +
.../stdlib/3.3/xml/etree/__init__.pyi | 0
typeshed/stdlib/3.3/xml/etree/cElementTree.pyi | 5 +
typeshed/stdlib/3.4/_stat.pyi | 69 +
typeshed/stdlib/3.4/_tracemalloc.pyi | 26 +
typeshed/stdlib/3.4/asyncio/__init__.pyi | 97 +
typeshed/stdlib/3.4/asyncio/coroutines.pyi | 9 +
typeshed/stdlib/3.4/asyncio/events.pyi | 177 +
typeshed/stdlib/3.4/asyncio/futures.pyi | 46 +
typeshed/stdlib/3.4/asyncio/locks.pyi | 59 +
typeshed/stdlib/3.4/asyncio/protocols.pyi | 24 +
typeshed/stdlib/3.4/asyncio/queues.pyi | 46 +
typeshed/stdlib/3.4/asyncio/streams.pyi | 105 +
typeshed/stdlib/3.4/asyncio/subprocess.pyi | 60 +
typeshed/stdlib/3.4/asyncio/tasks.pyi | 55 +
typeshed/stdlib/3.4/asyncio/transports.pyi | 38 +
typeshed/stdlib/3.4/enum.pyi | 50 +
typeshed/stdlib/3.4/pathlib.pyi | 111 +
typeshed/stdlib/3.4/selectors.pyi | 90 +
.../stdlib/3.4/xml/__init__.pyi | 0
typeshed/stdlib/3.4/xml/etree/ElementInclude.pyi | 19 +
typeshed/stdlib/3.4/xml/etree/ElementPath.pyi | 35 +
typeshed/stdlib/3.4/xml/etree/ElementTree.pyi | 118 +
.../stdlib/3.4/xml/etree/__init__.pyi | 0
typeshed/stdlib/3.4/xml/etree/cElementTree.pyi | 5 +
.../stdlib/3.5/xml/__init__.pyi | 0
typeshed/stdlib/3.5/xml/etree/ElementInclude.pyi | 19 +
typeshed/stdlib/3.5/xml/etree/ElementPath.pyi | 35 +
typeshed/stdlib/3.5/xml/etree/ElementTree.pyi | 118 +
.../stdlib/3.5/xml/etree/__init__.pyi | 0
typeshed/stdlib/3.5/xml/etree/cElementTree.pyi | 5 +
typeshed/stdlib/3.6/secrets.pyi | 14 +
typeshed/stdlib/3/__future__.pyi | 16 +
typeshed/stdlib/3/_ast.pyi | 358 +++
typeshed/stdlib/3/_codecs.pyi | 51 +
typeshed/stdlib/3/_compression.pyi | 20 +
typeshed/stdlib/3/_curses.pyi | 297 ++
typeshed/stdlib/3/_dummy_thread.pyi | 11 +
typeshed/stdlib/3/_importlib_modulespec.pyi | 43 +
typeshed/stdlib/3/_json.pyi | 30 +
typeshed/stdlib/3/_markupbase.pyi | 9 +
typeshed/stdlib/3/_operator.pyi | 71 +
typeshed/stdlib/3/_posixsubprocess.pyi | 13 +
typeshed/stdlib/3/_random.pyi | 12 +
typeshed/stdlib/3/_subprocess.pyi | 38 +
typeshed/stdlib/3/_thread.pyi | 15 +
typeshed/stdlib/3/_warnings.pyi | 11 +
typeshed/stdlib/3/abc.pyi | 13 +
typeshed/stdlib/3/array.pyi | 49 +
typeshed/stdlib/3/ast.pyi | 39 +
typeshed/stdlib/3/atexit.pyi | 9 +
typeshed/stdlib/3/base64.pyi | 42 +
typeshed/stdlib/3/binascii.pyi | 26 +
typeshed/stdlib/3/builtins.pyi | 908 ++++++
typeshed/stdlib/3/calendar.pyi | 92 +
typeshed/stdlib/3/cgi.pyi | 4 +
typeshed/stdlib/3/codecs.pyi | 194 ++
typeshed/stdlib/3/collections/__init__.pyi | 178 +
typeshed/stdlib/3/collections/abc.pyi | 38 +
.../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/copy.pyi | 10 +
typeshed/stdlib/3/csv.pyi | 77 +
typeshed/stdlib/3/curses/__init__.pyi | 12 +
typeshed/stdlib/3/datetime.pyi | 223 ++
typeshed/stdlib/3/decimal.pyi | 256 ++
typeshed/stdlib/3/difflib.pyi | 62 +
typeshed/stdlib/3/dis.pyi | 63 +
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 +
.../stdlib/3/email/mime}/__init__.py | 0
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 | 48 +
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 | 194 ++
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 | 10 +
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 | 63 +
typeshed/stdlib/3/json.pyi | 88 +
typeshed/stdlib/3/linecache.pyi | 5 +
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/opcode.pyi | 18 +
typeshed/stdlib/3/os/__init__.pyi | 386 +++
typeshed/stdlib/3/os/path.pyi | 65 +
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/pprint.pyi | 23 +
typeshed/stdlib/3/pwd.pyi | 18 +
typeshed/stdlib/3/pyclbr.pyi | 40 +
typeshed/stdlib/3/queue.pyi | 24 +
typeshed/stdlib/3/random.pyi | 67 +
typeshed/stdlib/3/re.pyi | 106 +
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 | 51 +
typeshed/stdlib/3/signal.pyi | 180 ++
typeshed/stdlib/3/smtplib.pyi | 94 +
typeshed/stdlib/3/socket.pyi | 361 +++
typeshed/stdlib/3/socketserver.pyi | 93 +
typeshed/stdlib/3/sqlite3/__init__.pyi | 5 +
typeshed/stdlib/3/sqlite3/dbapi2.pyi | 256 ++
typeshed/stdlib/3/ssl.pyi | 285 ++
typeshed/stdlib/3/stat.pyi | 73 +
typeshed/stdlib/3/string.pyi | 42 +
typeshed/stdlib/3/struct.pyi | 30 +
typeshed/stdlib/3/subprocess.pyi | 249 ++
typeshed/stdlib/3/sys.pyi | 161 +
typeshed/stdlib/3/sysconfig.pyi | 8 +
typeshed/stdlib/3/tempfile.pyi | 51 +
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/token.pyi | 63 +
typeshed/stdlib/3/tokenize.pyi | 99 +
typeshed/stdlib/3/types.pyi | 151 +
typeshed/stdlib/3/typing.pyi | 449 +++
typeshed/stdlib/3/unicodedata.pyi | 37 +
typeshed/stdlib/3/unittest/__init__.pyi | 333 ++
typeshed/stdlib/3/unittest/mock.pyi | 163 +
.../stdlib/3/urllib/__init__.pyi | 0
typeshed/stdlib/3/urllib/error.pyi | 11 +
typeshed/stdlib/3/urllib/parse.pyi | 152 +
typeshed/stdlib/3/urllib/request.pyi | 201 ++
typeshed/stdlib/3/urllib/response.pyi | 8 +
typeshed/stdlib/3/urllib/robotparser.pyi | 18 +
typeshed/stdlib/3/uuid.pyi | 73 +
typeshed/stdlib/3/weakref.pyi | 120 +
.../stdlib/3/wsgiref/__init__.pyi | 0
typeshed/stdlib/3/wsgiref/validate.pyi | 47 +
typeshed/stdlib/3/xml/etree/ElementInclude.pyi | 19 +
typeshed/stdlib/3/xml/etree/ElementPath.pyi | 25 +
typeshed/stdlib/3/xml/etree/ElementTree.pyi | 98 +
.../stdlib/3/xml/etree/__init__.pyi | 0
typeshed/stdlib/3/xml/etree/cElementTree.pyi | 5 +
typeshed/stdlib/3/zlib.pyi | 46 +
typeshed/tests/mypy_test.py | 149 +
typeshed/tests/pytype_test.py | 109 +
.../third_party/2/OpenSSL/__init__.pyi | 0
typeshed/third_party/2/OpenSSL/crypto.pyi | 6 +
.../third_party/2/concurrent/__init__.pyi | 0
.../third_party/2/concurrent/futures/__init__.pyi | 37 +
typeshed/third_party/2/croniter.pyi | 27 +
.../third_party/2/dateutil/__init__.pyi | 0
typeshed/third_party/2/dateutil/parser.pyi | 39 +
typeshed/third_party/2/dateutil/relativedelta.pyi | 86 +
typeshed/third_party/2/enum.pyi | 19 +
typeshed/third_party/2/fb303/FacebookService.pyi | 301 ++
.../third_party/2/fb303/__init__.pyi | 0
typeshed/third_party/2/gflags.pyi | 214 ++
.../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/requests/__init__.pyi | 39 +
typeshed/third_party/2/requests/adapters.pyi | 72 +
typeshed/third_party/2/requests/api.pyi | 21 +
typeshed/third_party/2/requests/auth.pyi | 41 +
typeshed/third_party/2/requests/compat.pyi | 6 +
typeshed/third_party/2/requests/cookies.pyi | 61 +
typeshed/third_party/2/requests/exceptions.pyi | 26 +
typeshed/third_party/2/requests/hooks.pyi | 8 +
typeshed/third_party/2/requests/models.pyi | 135 +
.../third_party/2/requests/packages/__init__.pyi | 8 +
.../2/requests/packages/urllib3/__init__.pyi | 12 +
.../2/requests/packages/urllib3/_collections.pyi | 51 +
.../2/requests/packages/urllib3/connection.pyi | 51 +
.../2/requests/packages/urllib3/connectionpool.pyi | 87 +
.../requests/packages/urllib3/contrib/__init__.pyi | 3 +
.../2/requests/packages/urllib3/exceptions.pyi | 54 +
.../2/requests/packages/urllib3/fields.pyi | 16 +
.../2/requests/packages/urllib3/filepost.pyi | 19 +
.../packages/urllib3/packages/__init__.pyi | 3 +
.../packages/ssl_match_hostname/__init__.pyi | 1 +
.../ssl_match_hostname/_implementation.pyi | 7 +
.../2/requests/packages/urllib3/poolmanager.pyi | 31 +
.../2/requests/packages/urllib3/request.pyi | 13 +
.../2/requests/packages/urllib3/response.pyi | 58 +
.../2/requests/packages/urllib3/util/__init__.pyi | 6 +
.../requests/packages/urllib3/util/connection.pyi | 11 +
.../2/requests/packages/urllib3/util/request.pyi | 12 +
.../2/requests/packages/urllib3/util/response.pyi | 5 +
.../2/requests/packages/urllib3/util/retry.pyi | 36 +
.../2/requests/packages/urllib3/util/timeout.pyi | 24 +
.../2/requests/packages/urllib3/util/url.pyi | 26 +
typeshed/third_party/2/requests/sessions.pyi | 106 +
typeshed/third_party/2/requests/status_codes.pyi | 8 +
typeshed/third_party/2/requests/structures.pyi | 12 +
typeshed/third_party/2/requests/utils.pyi | 52 +
typeshed/third_party/2/routes/__init__.pyi | 19 +
typeshed/third_party/2/routes/mapper.pyi | 70 +
typeshed/third_party/2/routes/util.pyi | 24 +
.../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 | 31 +
typeshed/third_party/2/six/moves/cPickle.pyi | 6 +
.../third_party/2/six/moves/urllib/__init__.pyi | 10 +
typeshed/third_party/2/six/moves/urllib/error.pyi | 8 +
typeshed/third_party/2/six/moves/urllib/parse.pyi | 30 +
.../third_party/2/six/moves/urllib/request.pyi | 38 +
.../third_party/2/six/moves/urllib/response.pyi | 9 +
.../third_party/2/six/moves/urllib/robotparser.pyi | 6 +
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/sqlalchemy/__init__.pyi | 124 +
.../2/sqlalchemy/databases/__init__.pyi | 12 +
.../third_party/2/sqlalchemy/databases/mysql.pyi | 1 +
.../third_party/2/sqlalchemy/dialects/__init__.pyi | 12 +
.../2/sqlalchemy/dialects/mysql/__init__.pyi | 40 +
.../2/sqlalchemy/dialects/mysql/base.pyi | 413 +++
.../third_party/2/sqlalchemy/engine/__init__.pyi | 11 +
typeshed/third_party/2/sqlalchemy/engine/base.pyi | 21 +
.../third_party/2/sqlalchemy/engine/strategies.pyi | 39 +
typeshed/third_party/2/sqlalchemy/engine/url.pyi | 27 +
typeshed/third_party/2/sqlalchemy/exc.pyi | 77 +
typeshed/third_party/2/sqlalchemy/inspection.pyi | 5 +
typeshed/third_party/2/sqlalchemy/log.pyi | 14 +
typeshed/third_party/2/sqlalchemy/orm/__init__.pyi | 95 +
typeshed/third_party/2/sqlalchemy/orm/session.pyi | 93 +
typeshed/third_party/2/sqlalchemy/pool.pyi | 118 +
typeshed/third_party/2/sqlalchemy/schema.pyi | 50 +
typeshed/third_party/2/sqlalchemy/sql/__init__.pyi | 66 +
.../third_party/2/sqlalchemy/sql/annotation.pyi | 11 +
typeshed/third_party/2/sqlalchemy/sql/base.pyi | 42 +
typeshed/third_party/2/sqlalchemy/sql/ddl.pyi | 25 +
typeshed/third_party/2/sqlalchemy/sql/dml.pyi | 20 +
typeshed/third_party/2/sqlalchemy/sql/elements.pyi | 60 +
.../third_party/2/sqlalchemy/sql/expression.pyi | 87 +
.../third_party/2/sqlalchemy/sql/functions.pyi | 47 +
typeshed/third_party/2/sqlalchemy/sql/naming.pyi | 1 +
.../third_party/2/sqlalchemy/sql/operators.pyi | 99 +
typeshed/third_party/2/sqlalchemy/sql/schema.pyi | 126 +
.../third_party/2/sqlalchemy/sql/selectable.pyi | 74 +
typeshed/third_party/2/sqlalchemy/sql/sqltypes.pyi | 57 +
typeshed/third_party/2/sqlalchemy/sql/type_api.pyi | 16 +
typeshed/third_party/2/sqlalchemy/sql/visitors.pyi | 33 +
typeshed/third_party/2/sqlalchemy/types.pyi | 51 +
.../third_party/2/sqlalchemy/util/__init__.pyi | 133 +
.../third_party/2/sqlalchemy/util/_collections.pyi | 214 ++
typeshed/third_party/2/sqlalchemy/util/compat.pyi | 67 +
.../third_party/2/sqlalchemy/util/deprecations.pyi | 13 +
.../third_party/2/sqlalchemy/util/langhelpers.pyi | 134 +
typeshed/third_party/2/thrift/Thrift.pyi | 55 +
.../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 +
.../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 | 194 ++
typeshed/third_party/2/werkzeug/wsgi.pyi | 88 +
typeshed/third_party/2/yaml/__init__.pyi | 51 +
typeshed/third_party/2/yaml/composer.pyi | 21 +
typeshed/third_party/2/yaml/constructor.pyi | 70 +
typeshed/third_party/2/yaml/dumper.pyi | 17 +
typeshed/third_party/2/yaml/emitter.pyi | 110 +
typeshed/third_party/2/yaml/error.pyi | 25 +
typeshed/third_party/2/yaml/events.pyi | 66 +
typeshed/third_party/2/yaml/loader.pyi | 19 +
typeshed/third_party/2/yaml/nodes.pyi | 35 +
typeshed/third_party/2/yaml/parser.pyi | 48 +
typeshed/third_party/2/yaml/reader.pyi | 38 +
typeshed/third_party/2/yaml/representer.pyi | 56 +
typeshed/third_party/2/yaml/resolver.pyi | 26 +
typeshed/third_party/2/yaml/scanner.pyi | 100 +
typeshed/third_party/2/yaml/serializer.pyi | 27 +
typeshed/third_party/2/yaml/tokens.pyi | 97 +
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 +
.../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/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 | 109 +
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 | 11 +
typeshed/third_party/2and3/pytz/__init__.pyi | 26 +
typeshed/third_party/2and3/pytz/lazy.pyi | 13 +
typeshed/third_party/2and3/singledispatch.pyi | 17 +
typeshed/third_party/2and3/ujson.pyi | 51 +
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 | 218 ++
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 +
.../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/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 | 50 +
typeshed/third_party/3/itsdangerous.pyi | 156 +
.../third_party/3/lxml/__init__.pyi | 0
typeshed/third_party/3/lxml/etree.pyi | 169 +
typeshed/third_party/3/lxml/objectify.pyi | 13 +
typeshed/third_party/3/pkg_resources.pyi | 313 ++
typeshed/third_party/3/requests/__init__.pyi | 39 +
typeshed/third_party/3/requests/adapters.pyi | 72 +
typeshed/third_party/3/requests/api.pyi | 18 +
typeshed/third_party/3/requests/auth.pyi | 41 +
typeshed/third_party/3/requests/compat.pyi | 6 +
typeshed/third_party/3/requests/cookies.pyi | 65 +
typeshed/third_party/3/requests/exceptions.pyi | 26 +
typeshed/third_party/3/requests/hooks.pyi | 8 +
typeshed/third_party/3/requests/models.pyi | 136 +
.../third_party/3/requests/packages/__init__.pyi | 8 +
.../3/requests/packages/urllib3/__init__.pyi | 35 +
.../3/requests/packages/urllib3/_collections.pyi | 51 +
.../3/requests/packages/urllib3/connection.pyi | 64 +
.../3/requests/packages/urllib3/connectionpool.pyi | 89 +
.../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 +
.../packages/ssl_match_hostname/__init__.pyi | 8 +
.../ssl_match_hostname/_implementation.pyi | 7 +
.../3/requests/packages/urllib3/poolmanager.pyi | 31 +
.../3/requests/packages/urllib3/request.pyi | 13 +
.../3/requests/packages/urllib3/response.pyi | 58 +
.../3/requests/packages/urllib3/util/__init__.pyi | 29 +
.../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/ssl_.pyi | 24 +
.../3/requests/packages/urllib3/util/timeout.pyi | 24 +
.../3/requests/packages/urllib3/util/url.pyi | 26 +
typeshed/third_party/3/requests/sessions.pyi | 108 +
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/__init__.pyi | 103 +
typeshed/third_party/3/six/moves/__init__.pyi | 34 +
typeshed/third_party/3/six/moves/cPickle.pyi | 6 +
.../third_party/3/six/moves/urllib/__init__.pyi | 10 +
typeshed/third_party/3/six/moves/urllib/error.pyi | 8 +
typeshed/third_party/3/six/moves/urllib/parse.pyi | 22 +
.../third_party/3/six/moves/urllib/request.pyi | 40 +
.../third_party/3/six/moves/urllib/response.pyi | 1 +
.../third_party/3/six/moves/urllib/robotparser.pyi | 6 +
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 | 2 +
typeshed/third_party/3/typed_ast/ast27.pyi | 360 +++
typeshed/third_party/3/typed_ast/ast35.pyi | 392 +++
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 | 194 ++
typeshed/third_party/3/werkzeug/wsgi.pyi | 88 +
1181 files changed, 53894 insertions(+), 90333 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