[med-svn] [mypy] branch upstream updated (cfb5550 -> 111e209)

Michael Crusoe misterc-guest at moszumanska.debian.org
Thu Feb 2 08:23:02 UTC 2017


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

misterc-guest pushed a change to branch upstream
in repository mypy.

      from  cfb5550   New upstream version 0.470
       new  51ba11b   New upstream version 0.470-complete
       new  111e209   New upstream version 0.480.dev0

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 PKG-INFO                                           |   30 +
 README.md                                          |    5 +-
 conftest.py                                        |    1 -
 docs/source/cheat_sheet.rst                        |    4 +-
 docs/source/cheat_sheet_py3.rst                    |    2 +-
 docs/source/command_line.rst                       |   41 +-
 mypy.egg-info/PKG-INFO                             |   30 +
 mypy.egg-info/SOURCES.txt                          | 1252 ++++++++++++++++++++
 mypy.egg-info/dependency_links.txt                 |    1 +
 mypy.egg-info/requires.txt                         |    1 +
 mypy.egg-info/top_level.txt                        |    1 +
 mypy/api.py                                        |   32 +-
 mypy/build.py                                      |    8 +-
 mypy/checker.py                                    |  400 ++++---
 mypy/checkexpr.py                                  |  179 ++-
 mypy/checkmember.py                                |   27 +-
 mypy/constraints.py                                |   62 +-
 mypy/errors.py                                     |    2 +-
 mypy/expandtype.py                                 |   34 +-
 mypy/fastparse.py                                  |  213 ++--
 mypy/fastparse2.py                                 |  271 +++--
 mypy/main.py                                       |  126 +-
 mypy/messages.py                                   |   10 +-
 mypy/nodes.py                                      |  102 +-
 mypy/options.py                                    |    6 +-
 mypy/sametypes.py                                  |   13 +-
 mypy/semanal.py                                    |   98 +-
 mypy/strconv.py                                    |   12 +-
 mypy/test/data.py                                  |   51 +-
 mypy/test/testcheck.py                             |   18 +-
 mypy/test/testlex.py                               |  108 +-
 mypy/traverser.py                                  |    2 +
 mypy/treetransform.py                              |    8 +-
 mypy/typefixture.py                                |   18 +-
 mypy/types.py                                      |    7 +-
 mypy/typevars.py                                   |   24 +
 mypy/version.py                                    |    2 +-
 mypy/visitor.py                                    |  171 ++-
 mypy_self_check.ini                                |   11 +-
 runtests.py                                        |    2 +-
 scripts/myunit                                     |    9 -
 setup.cfg                                          |   54 +-
 test-data/.flake8                                  |   22 +-
 test-data/unit/check-async-await.test              |   17 +
 test-data/unit/check-classes.test                  |  335 +++++-
 test-data/unit/check-columns.test                  |    8 +-
 test-data/unit/check-dynamic-typing.test           |    4 +-
 test-data/unit/check-expressions.test              |   18 +-
 test-data/unit/check-fastparse.test                |  112 +-
 test-data/unit/check-flags.test                    |   65 +-
 test-data/unit/check-functions.test                |    4 +-
 test-data/unit/check-generic-subtyping.test        |    9 +-
 test-data/unit/check-generics.test                 |   43 +
 test-data/unit/check-inference-context.test        |   60 +
 test-data/unit/check-inference.test                |    4 +-
 test-data/unit/check-newsyntax.test                |   15 +-
 test-data/unit/check-newtype.test                  |    7 +-
 test-data/unit/check-optional.test                 |   19 +
 test-data/unit/check-python2.test                  |   35 +-
 test-data/unit/check-statements.test               |  129 ++
 test-data/unit/check-tuples.test                   |    6 +-
 test-data/unit/check-typevar-values.test           |    8 +-
 test-data/unit/check-unions.test                   |   79 ++
 test-data/unit/check-varargs.test                  |   12 +-
 test-data/unit/fixtures/bool.pyi                   |    1 +
 test-data/unit/fixtures/dict.pyi                   |    1 +
 test-data/unit/fixtures/exception.pyi              |    1 +
 test-data/unit/fixtures/ops.pyi                    |    2 +
 test-data/unit/fixtures/staticmethod.pyi           |    1 +
 test-data/unit/fixtures/tuple.pyi                  |    1 +
 test-data/unit/parse-errors.test                   |  210 ++--
 test-data/unit/parse-python2.test                  |   20 +-
 test-data/unit/parse.test                          |  129 +-
 test-data/unit/python2eval.test                    |   13 +-
 test-data/unit/semanal-classes.test                |    2 +-
 test-data/unit/semanal-errors.test                 |  135 ++-
 test-data/unit/semanal-expressions.test            |   10 +-
 test-data/unit/semanal-statements.test             |   30 +-
 test-data/unit/semanal-types.test                  |   11 -
 test-data/unit/typexport-basic.test                |    8 +-
 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                     |   42 +
 typeshed/stdlib/2/UserList.pyi                     |    3 +
 typeshed/stdlib/2/UserString.pyi                   |    4 +
 typeshed/stdlib/2/__builtin__.pyi                  |  957 +++++++++++++++
 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                     |  957 +++++++++++++++
 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                  |   94 ++
 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               |  255 ++++
 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/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                        |  166 +++
 typeshed/stdlib/2/typing.pyi                       |  372 ++++++
 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/types.pyi                |   34 +
 typeshed/stdlib/2/wsgiref/validate.pyi             |   47 +
 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                 |  159 +++
 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/syslog.pyi                   |   44 +
 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/etree/ElementInclude.pyi |   17 +
 typeshed/stdlib/2and3/xml/etree/ElementPath.pyi    |   33 +
 typeshed/stdlib/2and3/xml/etree/ElementTree.pyi    |  122 ++
 .../stdlib/2and3/xml/etree/__init__.pyi            |    0
 typeshed/stdlib/2and3/xml/etree/cElementTree.pyi   |    3 +
 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 +
 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           |   99 ++
 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             |   51 +
 typeshed/stdlib/3.4/asyncio/streams.pyi            |  106 ++
 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 ++
 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                     |  923 +++++++++++++++
 typeshed/stdlib/3/calendar.pyi                     |   95 ++
 typeshed/stdlib/3/cgi.pyi                          |    4 +
 typeshed/stdlib/3/codecs.pyi                       |  194 +++
 typeshed/stdlib/3/collections/__init__.pyi         |  182 +++
 typeshed/stdlib/3/collections/abc.pyi              |   39 +
 .../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                      |  255 ++++
 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                  |  388 ++++++
 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               |  255 ++++
 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                          |  166 +++
 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                        |  153 +++
 typeshed/stdlib/3/typing.pyi                       |  479 ++++++++
 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                 |  161 +++
 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/types.pyi                |   33 +
 typeshed/stdlib/3/wsgiref/validate.pyi             |   47 +
 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          |  185 +++
 .../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/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 +
 .../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/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 +++++
 .../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            |   26 +
 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/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/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       |   26 +
 typeshed/third_party/2and3/pytz/lazy.pyi           |   13 +
 typeshed/third_party/2and3/singledispatch.pyi      |   17 +
 typeshed/third_party/2and3/sqlalchemy/__init__.pyi |  124 ++
 .../2and3/sqlalchemy/databases/__init__.pyi        |   12 +
 .../2and3/sqlalchemy/databases/mysql.pyi           |    1 +
 .../2and3/sqlalchemy/dialects/__init__.pyi         |   12 +
 .../2and3/sqlalchemy/dialects/mysql/__init__.pyi   |   40 +
 .../2and3/sqlalchemy/dialects/mysql/base.pyi       |  413 +++++++
 .../2and3/sqlalchemy/engine/__init__.pyi           |   11 +
 .../third_party/2and3/sqlalchemy/engine/base.pyi   |   21 +
 .../2and3/sqlalchemy/engine/strategies.pyi         |   39 +
 .../third_party/2and3/sqlalchemy/engine/url.pyi    |   27 +
 typeshed/third_party/2and3/sqlalchemy/exc.pyi      |   77 ++
 .../third_party/2and3/sqlalchemy/inspection.pyi    |    5 +
 typeshed/third_party/2and3/sqlalchemy/log.pyi      |   14 +
 .../third_party/2and3/sqlalchemy/orm/__init__.pyi  |   95 ++
 .../third_party/2and3/sqlalchemy/orm/session.pyi   |   93 ++
 typeshed/third_party/2and3/sqlalchemy/orm/util.pyi |   12 +
 typeshed/third_party/2and3/sqlalchemy/pool.pyi     |  118 ++
 typeshed/third_party/2and3/sqlalchemy/schema.pyi   |   50 +
 .../third_party/2and3/sqlalchemy/sql/__init__.pyi  |   66 ++
 .../2and3/sqlalchemy/sql/annotation.pyi            |   11 +
 typeshed/third_party/2and3/sqlalchemy/sql/base.pyi |   42 +
 typeshed/third_party/2and3/sqlalchemy/sql/ddl.pyi  |   25 +
 typeshed/third_party/2and3/sqlalchemy/sql/dml.pyi  |   20 +
 .../third_party/2and3/sqlalchemy/sql/elements.pyi  |   93 ++
 .../2and3/sqlalchemy/sql/expression.pyi            |   87 ++
 .../third_party/2and3/sqlalchemy/sql/functions.pyi |   47 +
 .../third_party/2and3/sqlalchemy/sql/naming.pyi    |    1 +
 .../third_party/2and3/sqlalchemy/sql/operators.pyi |   99 ++
 .../third_party/2and3/sqlalchemy/sql/schema.pyi    |  126 ++
 .../2and3/sqlalchemy/sql/selectable.pyi            |   76 ++
 .../third_party/2and3/sqlalchemy/sql/sqltypes.pyi  |   57 +
 .../third_party/2and3/sqlalchemy/sql/type_api.pyi  |   16 +
 .../third_party/2and3/sqlalchemy/sql/visitors.pyi  |   33 +
 typeshed/third_party/2and3/sqlalchemy/types.pyi    |   51 +
 .../third_party/2and3/sqlalchemy/util/__init__.pyi |  133 +++
 .../2and3/sqlalchemy/util/_collections.pyi         |  214 ++++
 .../third_party/2and3/sqlalchemy/util/compat.pyi   |   67 ++
 .../2and3/sqlalchemy/util/deprecations.pyi         |   13 +
 .../2and3/sqlalchemy/util/langhelpers.pyi          |  134 +++
 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/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                    |   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            |   26 +
 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 ++
 995 files changed, 57581 insertions(+), 1061 deletions(-)
 create mode 100644 PKG-INFO
 create mode 100644 mypy.egg-info/PKG-INFO
 create mode 100644 mypy.egg-info/SOURCES.txt
 create mode 100644 mypy.egg-info/dependency_links.txt
 create mode 100644 mypy.egg-info/requires.txt
 create mode 100644 mypy.egg-info/top_level.txt
 create mode 100644 mypy/typevars.py
 delete mode 100755 scripts/myunit
 mode change 120000 => 100644 test-data/.flake8
 create mode 100644 typeshed/stdlib/2/BaseHTTPServer.pyi
 create mode 100644 typeshed/stdlib/2/ConfigParser.pyi
 create mode 100644 typeshed/stdlib/2/Cookie.pyi
 create mode 100644 typeshed/stdlib/2/HTMLParser.pyi
 create mode 100644 typeshed/stdlib/2/Queue.pyi
 create mode 100644 typeshed/stdlib/2/SocketServer.pyi
 create mode 100644 typeshed/stdlib/2/StringIO.pyi
 create mode 100644 typeshed/stdlib/2/UserDict.pyi
 create mode 100644 typeshed/stdlib/2/UserList.pyi
 create mode 100644 typeshed/stdlib/2/UserString.pyi
 create mode 100644 typeshed/stdlib/2/__builtin__.pyi
 create mode 100644 typeshed/stdlib/2/__future__.pyi
 create mode 100644 typeshed/stdlib/2/_ast.pyi
 create mode 100644 typeshed/stdlib/2/_codecs.pyi
 create mode 100644 typeshed/stdlib/2/_collections.pyi
 create mode 100644 typeshed/stdlib/2/_functools.pyi
 create mode 100644 typeshed/stdlib/2/_hotshot.pyi
 create mode 100644 typeshed/stdlib/2/_io.pyi
 create mode 100644 typeshed/stdlib/2/_json.pyi
 create mode 100644 typeshed/stdlib/2/_md5.pyi
 create mode 100644 typeshed/stdlib/2/_random.pyi
 create mode 100644 typeshed/stdlib/2/_sha.pyi
 create mode 100644 typeshed/stdlib/2/_sha256.pyi
 create mode 100644 typeshed/stdlib/2/_sha512.pyi
 create mode 100644 typeshed/stdlib/2/_socket.pyi
 create mode 100644 typeshed/stdlib/2/_sre.pyi
 create mode 100644 typeshed/stdlib/2/_struct.pyi
 create mode 100644 typeshed/stdlib/2/_symtable.pyi
 create mode 100644 typeshed/stdlib/2/_warnings.pyi
 create mode 100644 typeshed/stdlib/2/_weakref.pyi
 create mode 100644 typeshed/stdlib/2/_weakrefset.pyi
 create mode 100644 typeshed/stdlib/2/abc.pyi
 create mode 100644 typeshed/stdlib/2/array.pyi
 create mode 100644 typeshed/stdlib/2/ast.pyi
 create mode 100644 typeshed/stdlib/2/atexit.pyi
 create mode 100644 typeshed/stdlib/2/base64.pyi
 create mode 100644 typeshed/stdlib/2/binascii.pyi
 create mode 100644 typeshed/stdlib/2/builtins.pyi
 create mode 100644 typeshed/stdlib/2/cPickle.pyi
 create mode 100644 typeshed/stdlib/2/cStringIO.pyi
 create mode 100644 typeshed/stdlib/2/calendar.pyi
 create mode 100644 typeshed/stdlib/2/codecs.pyi
 create mode 100644 typeshed/stdlib/2/collections.pyi
 create mode 100644 typeshed/stdlib/2/commands.pyi
 create mode 100644 typeshed/stdlib/2/compileall.pyi
 create mode 100644 typeshed/stdlib/2/cookielib.pyi
 create mode 100644 typeshed/stdlib/2/copy.pyi
 create mode 100644 typeshed/stdlib/2/csv.pyi
 create mode 100644 typeshed/stdlib/2/datetime.pyi
 create mode 100644 typeshed/stdlib/2/decimal.pyi
 create mode 100644 typeshed/stdlib/2/difflib.pyi
 copy mypy/test/__init__.py => typeshed/stdlib/2/distutils/__init__.pyi (100%)
 create mode 100644 typeshed/stdlib/2/distutils/emxccompiler.pyi
 create mode 100644 typeshed/stdlib/2/doctest.pyi
 create mode 100644 typeshed/stdlib/2/email/MIMEText.pyi
 create mode 100644 typeshed/stdlib/2/email/__init__.pyi
 create mode 100644 typeshed/stdlib/2/email/_parseaddr.pyi
 copy mypy/test/__init__.py => typeshed/stdlib/2/email/mime/__init__.pyi (100%)
 create mode 100644 typeshed/stdlib/2/email/mime/base.pyi
 create mode 100644 typeshed/stdlib/2/email/mime/multipart.pyi
 create mode 100644 typeshed/stdlib/2/email/mime/nonmultipart.pyi
 create mode 100644 typeshed/stdlib/2/email/mime/text.pyi
 create mode 100644 typeshed/stdlib/2/email/utils.pyi
 create mode 100644 typeshed/stdlib/2/encodings/__init__.pyi
 create mode 100644 typeshed/stdlib/2/encodings/utf_8.pyi
 create mode 100644 typeshed/stdlib/2/exceptions.pyi
 create mode 100644 typeshed/stdlib/2/fcntl.pyi
 create mode 100644 typeshed/stdlib/2/fileinput.pyi
 create mode 100644 typeshed/stdlib/2/fnmatch.pyi
 create mode 100644 typeshed/stdlib/2/functools.pyi
 create mode 100644 typeshed/stdlib/2/future_builtins.pyi
 create mode 100644 typeshed/stdlib/2/gc.pyi
 create mode 100644 typeshed/stdlib/2/genericpath.pyi
 create mode 100644 typeshed/stdlib/2/getopt.pyi
 create mode 100644 typeshed/stdlib/2/getpass.pyi
 create mode 100644 typeshed/stdlib/2/gettext.pyi
 create mode 100644 typeshed/stdlib/2/glob.pyi
 create mode 100644 typeshed/stdlib/2/grp.pyi
 create mode 100644 typeshed/stdlib/2/gzip.pyi
 create mode 100644 typeshed/stdlib/2/hashlib.pyi
 create mode 100644 typeshed/stdlib/2/heapq.pyi
 create mode 100644 typeshed/stdlib/2/htmlentitydefs.pyi
 create mode 100644 typeshed/stdlib/2/httplib.pyi
 create mode 100644 typeshed/stdlib/2/imp.pyi
 create mode 100644 typeshed/stdlib/2/importlib.pyi
 create mode 100644 typeshed/stdlib/2/inspect.pyi
 create mode 100644 typeshed/stdlib/2/io.pyi
 create mode 100644 typeshed/stdlib/2/itertools.pyi
 create mode 100644 typeshed/stdlib/2/json.pyi
 create mode 100644 typeshed/stdlib/2/linecache.pyi
 create mode 100644 typeshed/stdlib/2/markupbase.pyi
 create mode 100644 typeshed/stdlib/2/md5.pyi
 create mode 100644 typeshed/stdlib/2/mimetools.pyi
 create mode 100644 typeshed/stdlib/2/multiprocessing/__init__.pyi
 create mode 100644 typeshed/stdlib/2/multiprocessing/process.pyi
 create mode 100644 typeshed/stdlib/2/multiprocessing/util.pyi
 create mode 100644 typeshed/stdlib/2/optparse.pyi
 create mode 100644 typeshed/stdlib/2/os/__init__.pyi
 create mode 100644 typeshed/stdlib/2/os/path.pyi
 create mode 100644 typeshed/stdlib/2/pdb.pyi
 create mode 100644 typeshed/stdlib/2/pickle.pyi
 create mode 100644 typeshed/stdlib/2/pipes.pyi
 create mode 100644 typeshed/stdlib/2/platform.pyi
 create mode 100644 typeshed/stdlib/2/posix.pyi
 create mode 100644 typeshed/stdlib/2/posixpath.pyi
 create mode 100644 typeshed/stdlib/2/pprint.pyi
 create mode 100644 typeshed/stdlib/2/pwd.pyi
 create mode 100644 typeshed/stdlib/2/quopri.pyi
 create mode 100644 typeshed/stdlib/2/random.pyi
 create mode 100644 typeshed/stdlib/2/re.pyi
 create mode 100644 typeshed/stdlib/2/resource.pyi
 create mode 100644 typeshed/stdlib/2/rfc822.pyi
 create mode 100644 typeshed/stdlib/2/robotparser.pyi
 create mode 100644 typeshed/stdlib/2/runpy.pyi
 create mode 100644 typeshed/stdlib/2/select.pyi
 create mode 100644 typeshed/stdlib/2/sha.pyi
 create mode 100644 typeshed/stdlib/2/shelve.pyi
 create mode 100644 typeshed/stdlib/2/shlex.pyi
 create mode 100644 typeshed/stdlib/2/shutil.pyi
 create mode 100644 typeshed/stdlib/2/signal.pyi
 create mode 100644 typeshed/stdlib/2/smtplib.pyi
 create mode 100644 typeshed/stdlib/2/socket.pyi
 create mode 100644 typeshed/stdlib/2/spwd.pyi
 create mode 100644 typeshed/stdlib/2/sqlite3/__init__.pyi
 create mode 100644 typeshed/stdlib/2/sqlite3/dbapi2.pyi
 create mode 100644 typeshed/stdlib/2/ssl.pyi
 create mode 100644 typeshed/stdlib/2/stat.pyi
 create mode 100644 typeshed/stdlib/2/string.pyi
 create mode 100644 typeshed/stdlib/2/strop.pyi
 create mode 100644 typeshed/stdlib/2/struct.pyi
 create mode 100644 typeshed/stdlib/2/subprocess.pyi
 create mode 100644 typeshed/stdlib/2/sys.pyi
 create mode 100644 typeshed/stdlib/2/tempfile.pyi
 create mode 100644 typeshed/stdlib/2/textwrap.pyi
 create mode 100644 typeshed/stdlib/2/thread.pyi
 create mode 100644 typeshed/stdlib/2/time.pyi
 create mode 100644 typeshed/stdlib/2/token.pyi
 create mode 100644 typeshed/stdlib/2/tokenize.pyi
 create mode 100644 typeshed/stdlib/2/types.pyi
 create mode 100644 typeshed/stdlib/2/typing.pyi
 create mode 100644 typeshed/stdlib/2/unicodedata.pyi
 create mode 100644 typeshed/stdlib/2/unittest.pyi
 create mode 100644 typeshed/stdlib/2/urllib.pyi
 create mode 100644 typeshed/stdlib/2/urllib2.pyi
 create mode 100644 typeshed/stdlib/2/urlparse.pyi
 create mode 100644 typeshed/stdlib/2/uuid.pyi
 create mode 100644 typeshed/stdlib/2/weakref.pyi
 copy mypy/test/__init__.py => typeshed/stdlib/2/wsgiref/__init__.pyi (100%)
 create mode 100644 typeshed/stdlib/2/wsgiref/types.pyi
 create mode 100644 typeshed/stdlib/2/wsgiref/validate.pyi
 create mode 100644 typeshed/stdlib/2/xxsubtype.pyi
 create mode 100644 typeshed/stdlib/2/zlib.pyi
 create mode 100644 typeshed/stdlib/2and3/_bisect.pyi
 create mode 100644 typeshed/stdlib/2and3/_heapq.pyi
 create mode 100644 typeshed/stdlib/2and3/argparse.pyi
 create mode 100644 typeshed/stdlib/2and3/asynchat.pyi
 create mode 100644 typeshed/stdlib/2and3/asyncore.pyi
 create mode 100644 typeshed/stdlib/2and3/bisect.pyi
 create mode 100644 typeshed/stdlib/2and3/bz2.pyi
 create mode 100644 typeshed/stdlib/2and3/cProfile.pyi
 create mode 100644 typeshed/stdlib/2and3/cmath.pyi
 create mode 100644 typeshed/stdlib/2and3/code.pyi
 create mode 100644 typeshed/stdlib/2and3/colorsys.pyi
 create mode 100644 typeshed/stdlib/2and3/contextlib.pyi
 copy mypy/test/__init__.py => typeshed/stdlib/2and3/distutils/__init__.pyi (100%)
 create mode 100644 typeshed/stdlib/2and3/distutils/archive_util.pyi
 create mode 100644 typeshed/stdlib/2and3/distutils/bcppcompiler.pyi
 create mode 100644 typeshed/stdlib/2and3/distutils/ccompiler.pyi
 create mode 100644 typeshed/stdlib/2and3/distutils/cmd.pyi
 copy mypy/test/__init__.py => typeshed/stdlib/2and3/distutils/command/__init__.pyi (100%)
 copy mypy/test/__init__.py => typeshed/stdlib/2and3/distutils/command/bdist.pyi (100%)
 copy mypy/test/__init__.py => typeshed/stdlib/2and3/distutils/command/bdist_dumb.pyi (100%)
 create mode 100644 typeshed/stdlib/2and3/distutils/command/bdist_msi.pyi
 copy mypy/test/__init__.py => typeshed/stdlib/2and3/distutils/command/bdist_packager.pyi (100%)
 copy mypy/test/__init__.py => typeshed/stdlib/2and3/distutils/command/bdist_rpm.pyi (100%)
 copy mypy/test/__init__.py => typeshed/stdlib/2and3/distutils/command/bdist_wininst.pyi (100%)
 copy mypy/test/__init__.py => typeshed/stdlib/2and3/distutils/command/build.pyi (100%)
 copy mypy/test/__init__.py => typeshed/stdlib/2and3/distutils/command/build_clib.pyi (100%)
 copy mypy/test/__init__.py => typeshed/stdlib/2and3/distutils/command/build_ext.pyi (100%)
 create mode 100644 typeshed/stdlib/2and3/distutils/command/build_py.pyi
 copy mypy/test/__init__.py => typeshed/stdlib/2and3/distutils/command/build_scripts.pyi (100%)
 copy mypy/test/__init__.py => typeshed/stdlib/2and3/distutils/command/check.pyi (100%)
 copy mypy/test/__init__.py => typeshed/stdlib/2and3/distutils/command/clean.pyi (100%)
 copy mypy/test/__init__.py => typeshed/stdlib/2and3/distutils/command/config.pyi (100%)
 copy mypy/test/__init__.py => typeshed/stdlib/2and3/distutils/command/install.pyi (100%)
 copy mypy/test/__init__.py => typeshed/stdlib/2and3/distutils/command/install_data.pyi (100%)
 copy mypy/test/__init__.py => typeshed/stdlib/2and3/distutils/command/install_headers.pyi (100%)
 copy mypy/test/__init__.py => typeshed/stdlib/2and3/distutils/command/install_lib.pyi (100%)
 copy mypy/test/__init__.py => typeshed/stdlib/2and3/distutils/command/install_scripts.pyi (100%)
 copy mypy/test/__init__.py => typeshed/stdlib/2and3/distutils/command/register.pyi (100%)
 copy mypy/test/__init__.py => typeshed/stdlib/2and3/distutils/command/sdist.pyi (100%)
 create mode 100644 typeshed/stdlib/2and3/distutils/core.pyi
 create mode 100644 typeshed/stdlib/2and3/distutils/cygwinccompiler.pyi
 create mode 100644 typeshed/stdlib/2and3/distutils/debug.pyi
 create mode 100644 typeshed/stdlib/2and3/distutils/dep_util.pyi
 create mode 100644 typeshed/stdlib/2and3/distutils/dir_util.pyi
 create mode 100644 typeshed/stdlib/2and3/distutils/dist.pyi
 create mode 100644 typeshed/stdlib/2and3/distutils/errors.pyi
 create mode 100644 typeshed/stdlib/2and3/distutils/extension.pyi
 create mode 100644 typeshed/stdlib/2and3/distutils/fancy_getopt.pyi
 create mode 100644 typeshed/stdlib/2and3/distutils/file_util.pyi
 create mode 100644 typeshed/stdlib/2and3/distutils/filelist.pyi
 copy mypy/test/__init__.py => typeshed/stdlib/2and3/distutils/log.pyi (100%)
 create mode 100644 typeshed/stdlib/2and3/distutils/msvccompiler.pyi
 create mode 100644 typeshed/stdlib/2and3/distutils/spawn.pyi
 create mode 100644 typeshed/stdlib/2and3/distutils/sysconfig.pyi
 create mode 100644 typeshed/stdlib/2and3/distutils/text_file.pyi
 create mode 100644 typeshed/stdlib/2and3/distutils/unixccompiler.pyi
 create mode 100644 typeshed/stdlib/2and3/distutils/util.pyi
 create mode 100644 typeshed/stdlib/2and3/distutils/version.pyi
 create mode 100644 typeshed/stdlib/2and3/errno.pyi
 create mode 100644 typeshed/stdlib/2and3/fractions.pyi
 create mode 100644 typeshed/stdlib/2and3/hmac.pyi
 create mode 100644 typeshed/stdlib/2and3/keyword.pyi
 create mode 100644 typeshed/stdlib/2and3/locale.pyi
 create mode 100644 typeshed/stdlib/2and3/logging/__init__.pyi
 create mode 100644 typeshed/stdlib/2and3/logging/config.pyi
 create mode 100644 typeshed/stdlib/2and3/logging/handlers.pyi
 create mode 100644 typeshed/stdlib/2and3/marshal.pyi
 create mode 100644 typeshed/stdlib/2and3/math.pyi
 create mode 100644 typeshed/stdlib/2and3/mimetypes.pyi
 create mode 100644 typeshed/stdlib/2and3/mmap.pyi
 create mode 100644 typeshed/stdlib/2and3/numbers.pyi
 create mode 100644 typeshed/stdlib/2and3/operator.pyi
 create mode 100644 typeshed/stdlib/2and3/pkgutil.pyi
 create mode 100644 typeshed/stdlib/2and3/plistlib.pyi
 create mode 100644 typeshed/stdlib/2and3/profile.pyi
 create mode 100644 typeshed/stdlib/2and3/pstats.pyi
 create mode 100644 typeshed/stdlib/2and3/readline.pyi
 create mode 100644 typeshed/stdlib/2and3/rlcompleter.pyi
 create mode 100644 typeshed/stdlib/2and3/site.pyi
 create mode 100644 typeshed/stdlib/2and3/syslog.pyi
 create mode 100644 typeshed/stdlib/2and3/tarfile.pyi
 create mode 100644 typeshed/stdlib/2and3/termios.pyi
 create mode 100644 typeshed/stdlib/2and3/threading.pyi
 create mode 100644 typeshed/stdlib/2and3/traceback.pyi
 create mode 100644 typeshed/stdlib/2and3/warnings.pyi
 create mode 100644 typeshed/stdlib/2and3/webbrowser.pyi
 create mode 100644 typeshed/stdlib/2and3/xml/__init__.pyi
 create mode 100644 typeshed/stdlib/2and3/xml/etree/ElementInclude.pyi
 create mode 100644 typeshed/stdlib/2and3/xml/etree/ElementPath.pyi
 create mode 100644 typeshed/stdlib/2and3/xml/etree/ElementTree.pyi
 copy mypy/test/__init__.py => typeshed/stdlib/2and3/xml/etree/__init__.pyi (100%)
 create mode 100644 typeshed/stdlib/2and3/xml/etree/cElementTree.pyi
 create mode 100644 typeshed/stdlib/2and3/xml/sax/__init__.pyi
 create mode 100644 typeshed/stdlib/2and3/xml/sax/handler.pyi
 create mode 100644 typeshed/stdlib/2and3/xml/sax/saxutils.pyi
 create mode 100644 typeshed/stdlib/2and3/xml/sax/xmlreader.pyi
 create mode 100644 typeshed/stdlib/2and3/zipfile.pyi
 create mode 100644 typeshed/stdlib/2and3/zipimport.pyi
 create mode 100644 typeshed/stdlib/3.3/ipaddress.pyi
 create mode 100644 typeshed/stdlib/3.4/_stat.pyi
 create mode 100644 typeshed/stdlib/3.4/_tracemalloc.pyi
 create mode 100644 typeshed/stdlib/3.4/asyncio/__init__.pyi
 create mode 100644 typeshed/stdlib/3.4/asyncio/coroutines.pyi
 create mode 100644 typeshed/stdlib/3.4/asyncio/events.pyi
 create mode 100644 typeshed/stdlib/3.4/asyncio/futures.pyi
 create mode 100644 typeshed/stdlib/3.4/asyncio/locks.pyi
 create mode 100644 typeshed/stdlib/3.4/asyncio/protocols.pyi
 create mode 100644 typeshed/stdlib/3.4/asyncio/queues.pyi
 create mode 100644 typeshed/stdlib/3.4/asyncio/streams.pyi
 create mode 100644 typeshed/stdlib/3.4/asyncio/subprocess.pyi
 create mode 100644 typeshed/stdlib/3.4/asyncio/tasks.pyi
 create mode 100644 typeshed/stdlib/3.4/asyncio/transports.pyi
 create mode 100644 typeshed/stdlib/3.4/enum.pyi
 create mode 100644 typeshed/stdlib/3.4/pathlib.pyi
 create mode 100644 typeshed/stdlib/3.4/selectors.pyi
 create mode 100644 typeshed/stdlib/3.6/secrets.pyi
 create mode 100644 typeshed/stdlib/3/__future__.pyi
 create mode 100644 typeshed/stdlib/3/_ast.pyi
 create mode 100644 typeshed/stdlib/3/_codecs.pyi
 create mode 100644 typeshed/stdlib/3/_compression.pyi
 create mode 100644 typeshed/stdlib/3/_curses.pyi
 create mode 100644 typeshed/stdlib/3/_dummy_thread.pyi
 create mode 100644 typeshed/stdlib/3/_importlib_modulespec.pyi
 create mode 100644 typeshed/stdlib/3/_json.pyi
 create mode 100644 typeshed/stdlib/3/_markupbase.pyi
 create mode 100644 typeshed/stdlib/3/_operator.pyi
 create mode 100644 typeshed/stdlib/3/_posixsubprocess.pyi
 create mode 100644 typeshed/stdlib/3/_random.pyi
 create mode 100644 typeshed/stdlib/3/_subprocess.pyi
 create mode 100644 typeshed/stdlib/3/_thread.pyi
 create mode 100644 typeshed/stdlib/3/_warnings.pyi
 create mode 100644 typeshed/stdlib/3/abc.pyi
 create mode 100644 typeshed/stdlib/3/array.pyi
 create mode 100644 typeshed/stdlib/3/ast.pyi
 create mode 100644 typeshed/stdlib/3/atexit.pyi
 create mode 100644 typeshed/stdlib/3/base64.pyi
 create mode 100644 typeshed/stdlib/3/binascii.pyi
 create mode 100644 typeshed/stdlib/3/builtins.pyi
 create mode 100644 typeshed/stdlib/3/calendar.pyi
 create mode 100644 typeshed/stdlib/3/cgi.pyi
 create mode 100644 typeshed/stdlib/3/codecs.pyi
 create mode 100644 typeshed/stdlib/3/collections/__init__.pyi
 create mode 100644 typeshed/stdlib/3/collections/abc.pyi
 copy mypy/test/__init__.py => typeshed/stdlib/3/concurrent/__init__.pyi (100%)
 create mode 100644 typeshed/stdlib/3/concurrent/futures/__init__.pyi
 create mode 100644 typeshed/stdlib/3/concurrent/futures/_base.pyi
 create mode 100644 typeshed/stdlib/3/concurrent/futures/process.pyi
 create mode 100644 typeshed/stdlib/3/concurrent/futures/thread.pyi
 create mode 100644 typeshed/stdlib/3/configparser.pyi
 create mode 100644 typeshed/stdlib/3/copy.pyi
 create mode 100644 typeshed/stdlib/3/csv.pyi
 create mode 100644 typeshed/stdlib/3/curses/__init__.pyi
 create mode 100644 typeshed/stdlib/3/datetime.pyi
 create mode 100644 typeshed/stdlib/3/decimal.pyi
 create mode 100644 typeshed/stdlib/3/difflib.pyi
 create mode 100644 typeshed/stdlib/3/dis.pyi
 create mode 100644 typeshed/stdlib/3/doctest.pyi
 create mode 100644 typeshed/stdlib/3/email/__init__.pyi
 create mode 100644 typeshed/stdlib/3/email/charset.pyi
 create mode 100644 typeshed/stdlib/3/email/contentmanager.pyi
 create mode 100644 typeshed/stdlib/3/email/encoders.pyi
 create mode 100644 typeshed/stdlib/3/email/errors.pyi
 create mode 100644 typeshed/stdlib/3/email/feedparser.pyi
 create mode 100644 typeshed/stdlib/3/email/generator.pyi
 create mode 100644 typeshed/stdlib/3/email/header.pyi
 create mode 100644 typeshed/stdlib/3/email/headerregistry.pyi
 create mode 100644 typeshed/stdlib/3/email/iterators.pyi
 create mode 100644 typeshed/stdlib/3/email/message.pyi
 copy {mypy/test => typeshed/stdlib/3/email/mime}/__init__.py (100%)
 create mode 100644 typeshed/stdlib/3/email/mime/application.pyi
 create mode 100644 typeshed/stdlib/3/email/mime/audio.pyi
 create mode 100644 typeshed/stdlib/3/email/mime/base.pyi
 create mode 100644 typeshed/stdlib/3/email/mime/image.pyi
 create mode 100644 typeshed/stdlib/3/email/mime/message.pyi
 create mode 100644 typeshed/stdlib/3/email/mime/multipart.pyi
 create mode 100644 typeshed/stdlib/3/email/mime/nonmultipart.pyi
 create mode 100644 typeshed/stdlib/3/email/mime/text.pyi
 create mode 100644 typeshed/stdlib/3/email/parser.pyi
 create mode 100644 typeshed/stdlib/3/email/policy.pyi
 create mode 100644 typeshed/stdlib/3/email/utils.pyi
 create mode 100644 typeshed/stdlib/3/encodings/__init__.pyi
 create mode 100644 typeshed/stdlib/3/encodings/utf_8.pyi
 create mode 100644 typeshed/stdlib/3/fcntl.pyi
 create mode 100644 typeshed/stdlib/3/fileinput.pyi
 create mode 100644 typeshed/stdlib/3/fnmatch.pyi
 create mode 100644 typeshed/stdlib/3/functools.pyi
 create mode 100644 typeshed/stdlib/3/gc.pyi
 create mode 100644 typeshed/stdlib/3/getopt.pyi
 create mode 100644 typeshed/stdlib/3/getpass.pyi
 create mode 100644 typeshed/stdlib/3/gettext.pyi
 create mode 100644 typeshed/stdlib/3/glob.pyi
 create mode 100644 typeshed/stdlib/3/grp.pyi
 create mode 100644 typeshed/stdlib/3/gzip.pyi
 create mode 100644 typeshed/stdlib/3/hashlib.pyi
 create mode 100644 typeshed/stdlib/3/heapq.pyi
 create mode 100644 typeshed/stdlib/3/html/__init__.pyi
 create mode 100644 typeshed/stdlib/3/html/entities.pyi
 create mode 100644 typeshed/stdlib/3/html/parser.pyi
 create mode 100644 typeshed/stdlib/3/http/__init__.pyi
 create mode 100644 typeshed/stdlib/3/http/client.pyi
 create mode 100644 typeshed/stdlib/3/http/cookiejar.pyi
 create mode 100644 typeshed/stdlib/3/http/cookies.pyi
 create mode 100644 typeshed/stdlib/3/http/server.pyi
 create mode 100644 typeshed/stdlib/3/imp.pyi
 create mode 100644 typeshed/stdlib/3/importlib/__init__.pyi
 create mode 100644 typeshed/stdlib/3/importlib/abc.pyi
 create mode 100644 typeshed/stdlib/3/importlib/machinery.pyi
 create mode 100644 typeshed/stdlib/3/importlib/util.pyi
 create mode 100644 typeshed/stdlib/3/inspect.pyi
 create mode 100644 typeshed/stdlib/3/io.pyi
 create mode 100644 typeshed/stdlib/3/itertools.pyi
 create mode 100644 typeshed/stdlib/3/json.pyi
 create mode 100644 typeshed/stdlib/3/linecache.pyi
 create mode 100644 typeshed/stdlib/3/msvcrt.pyi
 create mode 100644 typeshed/stdlib/3/multiprocessing/__init__.pyi
 create mode 100644 typeshed/stdlib/3/multiprocessing/managers.pyi
 create mode 100644 typeshed/stdlib/3/multiprocessing/pool.pyi
 create mode 100644 typeshed/stdlib/3/multiprocessing/process.pyi
 create mode 100644 typeshed/stdlib/3/opcode.pyi
 create mode 100644 typeshed/stdlib/3/os/__init__.pyi
 create mode 100644 typeshed/stdlib/3/os/path.pyi
 create mode 100644 typeshed/stdlib/3/pdb.pyi
 create mode 100644 typeshed/stdlib/3/pickle.pyi
 create mode 100644 typeshed/stdlib/3/pipes.pyi
 create mode 100644 typeshed/stdlib/3/platform.pyi
 create mode 100644 typeshed/stdlib/3/posix.pyi
 create mode 100644 typeshed/stdlib/3/posixpath.pyi
 create mode 100644 typeshed/stdlib/3/pprint.pyi
 create mode 100644 typeshed/stdlib/3/pwd.pyi
 create mode 100644 typeshed/stdlib/3/pyclbr.pyi
 create mode 100644 typeshed/stdlib/3/queue.pyi
 create mode 100644 typeshed/stdlib/3/random.pyi
 create mode 100644 typeshed/stdlib/3/re.pyi
 create mode 100644 typeshed/stdlib/3/resource.pyi
 create mode 100644 typeshed/stdlib/3/runpy.pyi
 create mode 100644 typeshed/stdlib/3/select.pyi
 create mode 100644 typeshed/stdlib/3/shelve.pyi
 create mode 100644 typeshed/stdlib/3/shlex.pyi
 create mode 100644 typeshed/stdlib/3/shutil.pyi
 create mode 100644 typeshed/stdlib/3/signal.pyi
 create mode 100644 typeshed/stdlib/3/smtplib.pyi
 create mode 100644 typeshed/stdlib/3/socket.pyi
 create mode 100644 typeshed/stdlib/3/socketserver.pyi
 create mode 100644 typeshed/stdlib/3/sqlite3/__init__.pyi
 create mode 100644 typeshed/stdlib/3/sqlite3/dbapi2.pyi
 create mode 100644 typeshed/stdlib/3/ssl.pyi
 create mode 100644 typeshed/stdlib/3/stat.pyi
 create mode 100644 typeshed/stdlib/3/string.pyi
 create mode 100644 typeshed/stdlib/3/struct.pyi
 create mode 100644 typeshed/stdlib/3/subprocess.pyi
 create mode 100644 typeshed/stdlib/3/sys.pyi
 create mode 100644 typeshed/stdlib/3/sysconfig.pyi
 create mode 100644 typeshed/stdlib/3/tempfile.pyi
 create mode 100644 typeshed/stdlib/3/textwrap.pyi
 create mode 100644 typeshed/stdlib/3/time.pyi
 create mode 100644 typeshed/stdlib/3/tkinter/__init__.pyi
 create mode 100644 typeshed/stdlib/3/tkinter/constants.pyi
 create mode 100644 typeshed/stdlib/3/tkinter/ttk.pyi
 create mode 100644 typeshed/stdlib/3/token.pyi
 create mode 100644 typeshed/stdlib/3/tokenize.pyi
 create mode 100644 typeshed/stdlib/3/types.pyi
 create mode 100644 typeshed/stdlib/3/typing.pyi
 create mode 100644 typeshed/stdlib/3/unicodedata.pyi
 create mode 100644 typeshed/stdlib/3/unittest/__init__.pyi
 create mode 100644 typeshed/stdlib/3/unittest/mock.pyi
 copy mypy/test/__init__.py => typeshed/stdlib/3/urllib/__init__.pyi (100%)
 create mode 100644 typeshed/stdlib/3/urllib/error.pyi
 create mode 100644 typeshed/stdlib/3/urllib/parse.pyi
 create mode 100644 typeshed/stdlib/3/urllib/request.pyi
 create mode 100644 typeshed/stdlib/3/urllib/response.pyi
 create mode 100644 typeshed/stdlib/3/urllib/robotparser.pyi
 create mode 100644 typeshed/stdlib/3/uuid.pyi
 create mode 100644 typeshed/stdlib/3/weakref.pyi
 copy mypy/test/__init__.py => typeshed/stdlib/3/wsgiref/__init__.pyi (100%)
 create mode 100644 typeshed/stdlib/3/wsgiref/types.pyi
 create mode 100644 typeshed/stdlib/3/wsgiref/validate.pyi
 create mode 100644 typeshed/stdlib/3/zlib.pyi
 create mode 100755 typeshed/tests/mypy_test.py
 create mode 100755 typeshed/tests/pytype_test.py
 copy mypy/test/__init__.py => typeshed/third_party/2/OpenSSL/__init__.pyi (100%)
 create mode 100644 typeshed/third_party/2/OpenSSL/crypto.pyi
 copy mypy/test/__init__.py => typeshed/third_party/2/concurrent/__init__.pyi (100%)
 create mode 100644 typeshed/third_party/2/concurrent/futures/__init__.pyi
 create mode 100644 typeshed/third_party/2/croniter.pyi
 copy mypy/test/__init__.py => typeshed/third_party/2/cryptography/__init__.pyi (100%)
 copy mypy/test/__init__.py => typeshed/third_party/2/cryptography/hazmat/__init__.pyi (100%)
 copy mypy/test/__init__.py => typeshed/third_party/2/cryptography/hazmat/primitives/__init__.pyi (100%)
 copy mypy/test/__init__.py => typeshed/third_party/2/cryptography/hazmat/primitives/asymmetric/__init__.pyi (100%)
 create mode 100644 typeshed/third_party/2/cryptography/hazmat/primitives/asymmetric/dsa.pyi
 create mode 100644 typeshed/third_party/2/cryptography/hazmat/primitives/asymmetric/rsa.pyi
 create mode 100644 typeshed/third_party/2/cryptography/hazmat/primitives/serialization.pyi
 copy mypy/test/__init__.py => typeshed/third_party/2/dateutil/__init__.pyi (100%)
 create mode 100644 typeshed/third_party/2/dateutil/parser.pyi
 create mode 100644 typeshed/third_party/2/dateutil/relativedelta.pyi
 create mode 100644 typeshed/third_party/2/dateutil/tz/__init__.pyi
 create mode 100644 typeshed/third_party/2/dateutil/tz/_common.pyi
 create mode 100644 typeshed/third_party/2/dateutil/tz/tz.pyi
 create mode 100644 typeshed/third_party/2/enum.pyi
 create mode 100644 typeshed/third_party/2/fb303/FacebookService.pyi
 copy mypy/test/__init__.py => typeshed/third_party/2/fb303/__init__.pyi (100%)
 create mode 100644 typeshed/third_party/2/gflags.pyi
 copy mypy/test/__init__.py => typeshed/third_party/2/google/__init__.pyi (100%)
 create mode 100644 typeshed/third_party/2/google/protobuf/__init__.pyi
 create mode 100644 typeshed/third_party/2/google/protobuf/descriptor.pyi
 create mode 100644 typeshed/third_party/2/google/protobuf/descriptor_pb2.pyi
 create mode 100644 typeshed/third_party/2/google/protobuf/descriptor_pool.pyi
 copy mypy/test/__init__.py => typeshed/third_party/2/google/protobuf/internal/__init__.pyi (100%)
 create mode 100644 typeshed/third_party/2/google/protobuf/internal/decoder.pyi
 create mode 100644 typeshed/third_party/2/google/protobuf/internal/encoder.pyi
 create mode 100644 typeshed/third_party/2/google/protobuf/internal/enum_type_wrapper.pyi
 create mode 100644 typeshed/third_party/2/google/protobuf/internal/wire_format.pyi
 create mode 100644 typeshed/third_party/2/google/protobuf/message.pyi
 create mode 100644 typeshed/third_party/2/google/protobuf/message_factory.pyi
 create mode 100644 typeshed/third_party/2/google/protobuf/reflection.pyi
 create mode 100644 typeshed/third_party/2/google/protobuf/symbol_database.pyi
 create mode 100644 typeshed/third_party/2/itsdangerous.pyi
 create mode 100644 typeshed/third_party/2/kazoo/__init__.pyi
 create mode 100644 typeshed/third_party/2/kazoo/client.pyi
 create mode 100644 typeshed/third_party/2/kazoo/exceptions.pyi
 create mode 100644 typeshed/third_party/2/kazoo/recipe/__init__.pyi
 create mode 100644 typeshed/third_party/2/kazoo/recipe/watchers.pyi
 create mode 100644 typeshed/third_party/2/pycurl.pyi
 create mode 100644 typeshed/third_party/2/pymssql.pyi
 create mode 100644 typeshed/third_party/2/redis/__init__.pyi
 create mode 100644 typeshed/third_party/2/redis/client.pyi
 create mode 100644 typeshed/third_party/2/redis/connection.pyi
 create mode 100644 typeshed/third_party/2/redis/exceptions.pyi
 create mode 100644 typeshed/third_party/2/redis/utils.pyi
 create mode 100644 typeshed/third_party/2/requests/__init__.pyi
 create mode 100644 typeshed/third_party/2/requests/adapters.pyi
 create mode 100644 typeshed/third_party/2/requests/api.pyi
 create mode 100644 typeshed/third_party/2/requests/auth.pyi
 create mode 100644 typeshed/third_party/2/requests/compat.pyi
 create mode 100644 typeshed/third_party/2/requests/cookies.pyi
 create mode 100644 typeshed/third_party/2/requests/exceptions.pyi
 create mode 100644 typeshed/third_party/2/requests/hooks.pyi
 create mode 100644 typeshed/third_party/2/requests/models.pyi
 create mode 100644 typeshed/third_party/2/requests/packages/__init__.pyi
 create mode 100644 typeshed/third_party/2/requests/packages/urllib3/__init__.pyi
 create mode 100644 typeshed/third_party/2/requests/packages/urllib3/_collections.pyi
 create mode 100644 typeshed/third_party/2/requests/packages/urllib3/connection.pyi
 create mode 100644 typeshed/third_party/2/requests/packages/urllib3/connectionpool.pyi
 create mode 100644 typeshed/third_party/2/requests/packages/urllib3/contrib/__init__.pyi
 create mode 100644 typeshed/third_party/2/requests/packages/urllib3/exceptions.pyi
 create mode 100644 typeshed/third_party/2/requests/packages/urllib3/fields.pyi
 create mode 100644 typeshed/third_party/2/requests/packages/urllib3/filepost.pyi
 create mode 100644 typeshed/third_party/2/requests/packages/urllib3/packages/__init__.pyi
 create mode 100644 typeshed/third_party/2/requests/packages/urllib3/packages/ssl_match_hostname/__init__.pyi
 create mode 100644 typeshed/third_party/2/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.pyi
 create mode 100644 typeshed/third_party/2/requests/packages/urllib3/poolmanager.pyi
 create mode 100644 typeshed/third_party/2/requests/packages/urllib3/request.pyi
 create mode 100644 typeshed/third_party/2/requests/packages/urllib3/response.pyi
 create mode 100644 typeshed/third_party/2/requests/packages/urllib3/util/__init__.pyi
 create mode 100644 typeshed/third_party/2/requests/packages/urllib3/util/connection.pyi
 create mode 100644 typeshed/third_party/2/requests/packages/urllib3/util/request.pyi
 create mode 100644 typeshed/third_party/2/requests/packages/urllib3/util/response.pyi
 create mode 100644 typeshed/third_party/2/requests/packages/urllib3/util/retry.pyi
 create mode 100644 typeshed/third_party/2/requests/packages/urllib3/util/timeout.pyi
 create mode 100644 typeshed/third_party/2/requests/packages/urllib3/util/url.pyi
 create mode 100644 typeshed/third_party/2/requests/sessions.pyi
 create mode 100644 typeshed/third_party/2/requests/status_codes.pyi
 create mode 100644 typeshed/third_party/2/requests/structures.pyi
 create mode 100644 typeshed/third_party/2/requests/utils.pyi
 create mode 100644 typeshed/third_party/2/routes/__init__.pyi
 create mode 100644 typeshed/third_party/2/routes/mapper.pyi
 create mode 100644 typeshed/third_party/2/routes/util.pyi
 copy mypy/test/__init__.py => typeshed/third_party/2/scribe/__init__.pyi (100%)
 create mode 100644 typeshed/third_party/2/scribe/scribe.pyi
 create mode 100644 typeshed/third_party/2/scribe/ttypes.pyi
 create mode 100644 typeshed/third_party/2/selenium/webdriver/remote/webdriver.pyi
 create mode 100644 typeshed/third_party/2/selenium/webdriver/remote/webelement.pyi
 create mode 100644 typeshed/third_party/2/simplejson/__init__.pyi
 create mode 100644 typeshed/third_party/2/simplejson/decoder.pyi
 create mode 100644 typeshed/third_party/2/simplejson/encoder.pyi
 create mode 100644 typeshed/third_party/2/simplejson/scanner.pyi
 create mode 100644 typeshed/third_party/2/six/__init__.pyi
 create mode 100644 typeshed/third_party/2/six/moves/__init__.pyi
 create mode 100644 typeshed/third_party/2/six/moves/cPickle.pyi
 create mode 100644 typeshed/third_party/2/six/moves/urllib/__init__.pyi
 create mode 100644 typeshed/third_party/2/six/moves/urllib/error.pyi
 create mode 100644 typeshed/third_party/2/six/moves/urllib/parse.pyi
 create mode 100644 typeshed/third_party/2/six/moves/urllib/request.pyi
 create mode 100644 typeshed/third_party/2/six/moves/urllib/response.pyi
 create mode 100644 typeshed/third_party/2/six/moves/urllib/robotparser.pyi
 create mode 100644 typeshed/third_party/2/six/moves/urllib_error.pyi
 create mode 100644 typeshed/third_party/2/six/moves/urllib_parse.pyi
 create mode 100644 typeshed/third_party/2/six/moves/urllib_request.pyi
 create mode 100644 typeshed/third_party/2/six/moves/urllib_response.pyi
 create mode 100644 typeshed/third_party/2/six/moves/urllib_robotparser.pyi
 create mode 100644 typeshed/third_party/2/thrift/Thrift.pyi
 copy mypy/test/__init__.py => typeshed/third_party/2/thrift/__init__.pyi (100%)
 create mode 100644 typeshed/third_party/2/thrift/protocol/TBinaryProtocol.pyi
 create mode 100644 typeshed/third_party/2/thrift/protocol/TProtocol.pyi
 create mode 100644 typeshed/third_party/2/thrift/protocol/__init__.pyi
 create mode 100644 typeshed/third_party/2/thrift/transport/TSocket.pyi
 create mode 100644 typeshed/third_party/2/thrift/transport/TTransport.pyi
 create mode 100644 typeshed/third_party/2/thrift/transport/__init__.pyi
 copy mypy/test/__init__.py => typeshed/third_party/2/tornado/__init__.pyi (100%)
 create mode 100644 typeshed/third_party/2/tornado/concurrent.pyi
 create mode 100644 typeshed/third_party/2/tornado/gen.pyi
 create mode 100644 typeshed/third_party/2/tornado/httpclient.pyi
 create mode 100644 typeshed/third_party/2/tornado/httpserver.pyi
 create mode 100644 typeshed/third_party/2/tornado/httputil.pyi
 create mode 100644 typeshed/third_party/2/tornado/ioloop.pyi
 create mode 100644 typeshed/third_party/2/tornado/locks.pyi
 create mode 100644 typeshed/third_party/2/tornado/netutil.pyi
 create mode 100644 typeshed/third_party/2/tornado/tcpserver.pyi
 create mode 100644 typeshed/third_party/2/tornado/testing.pyi
 create mode 100644 typeshed/third_party/2/tornado/util.pyi
 create mode 100644 typeshed/third_party/2/tornado/web.pyi
 create mode 100644 typeshed/third_party/2/werkzeug/__init__.pyi
 create mode 100644 typeshed/third_party/2/werkzeug/_compat.pyi
 create mode 100644 typeshed/third_party/2/werkzeug/_internal.pyi
 create mode 100644 typeshed/third_party/2/werkzeug/_reloader.pyi
 create mode 100644 typeshed/third_party/2/werkzeug/contrib/__init__.pyi
 create mode 100644 typeshed/third_party/2/werkzeug/contrib/atom.pyi
 create mode 100644 typeshed/third_party/2/werkzeug/contrib/cache.pyi
 create mode 100644 typeshed/third_party/2/werkzeug/contrib/fixers.pyi
 create mode 100644 typeshed/third_party/2/werkzeug/contrib/iterio.pyi
 create mode 100644 typeshed/third_party/2/werkzeug/contrib/jsrouting.pyi
 create mode 100644 typeshed/third_party/2/werkzeug/contrib/limiter.pyi
 create mode 100644 typeshed/third_party/2/werkzeug/contrib/lint.pyi
 create mode 100644 typeshed/third_party/2/werkzeug/contrib/profiler.pyi
 create mode 100644 typeshed/third_party/2/werkzeug/contrib/securecookie.pyi
 create mode 100644 typeshed/third_party/2/werkzeug/contrib/sessions.pyi
 create mode 100644 typeshed/third_party/2/werkzeug/contrib/testtools.pyi
 create mode 100644 typeshed/third_party/2/werkzeug/contrib/wrappers.pyi
 create mode 100644 typeshed/third_party/2/werkzeug/datastructures.pyi
 create mode 100644 typeshed/third_party/2/werkzeug/debug/__init__.pyi
 create mode 100644 typeshed/third_party/2/werkzeug/debug/console.pyi
 create mode 100644 typeshed/third_party/2/werkzeug/debug/repr.pyi
 create mode 100644 typeshed/third_party/2/werkzeug/debug/tbtools.pyi
 create mode 100644 typeshed/third_party/2/werkzeug/exceptions.pyi
 create mode 100644 typeshed/third_party/2/werkzeug/filesystem.pyi
 create mode 100644 typeshed/third_party/2/werkzeug/formparser.pyi
 create mode 100644 typeshed/third_party/2/werkzeug/http.pyi
 create mode 100644 typeshed/third_party/2/werkzeug/local.pyi
 create mode 100644 typeshed/third_party/2/werkzeug/posixemulation.pyi
 create mode 100644 typeshed/third_party/2/werkzeug/routing.pyi
 create mode 100644 typeshed/third_party/2/werkzeug/script.pyi
 create mode 100644 typeshed/third_party/2/werkzeug/security.pyi
 create mode 100644 typeshed/third_party/2/werkzeug/serving.pyi
 create mode 100644 typeshed/third_party/2/werkzeug/test.pyi
 create mode 100644 typeshed/third_party/2/werkzeug/testapp.pyi
 create mode 100644 typeshed/third_party/2/werkzeug/urls.pyi
 create mode 100644 typeshed/third_party/2/werkzeug/useragents.pyi
 create mode 100644 typeshed/third_party/2/werkzeug/utils.pyi
 create mode 100644 typeshed/third_party/2/werkzeug/wrappers.pyi
 create mode 100644 typeshed/third_party/2/werkzeug/wsgi.pyi
 create mode 100644 typeshed/third_party/2/yaml/__init__.pyi
 create mode 100644 typeshed/third_party/2/yaml/composer.pyi
 create mode 100644 typeshed/third_party/2/yaml/constructor.pyi
 create mode 100644 typeshed/third_party/2/yaml/dumper.pyi
 create mode 100644 typeshed/third_party/2/yaml/emitter.pyi
 create mode 100644 typeshed/third_party/2/yaml/error.pyi
 create mode 100644 typeshed/third_party/2/yaml/events.pyi
 create mode 100644 typeshed/third_party/2/yaml/loader.pyi
 create mode 100644 typeshed/third_party/2/yaml/nodes.pyi
 create mode 100644 typeshed/third_party/2/yaml/parser.pyi
 create mode 100644 typeshed/third_party/2/yaml/reader.pyi
 create mode 100644 typeshed/third_party/2/yaml/representer.pyi
 create mode 100644 typeshed/third_party/2/yaml/resolver.pyi
 create mode 100644 typeshed/third_party/2/yaml/scanner.pyi
 create mode 100644 typeshed/third_party/2/yaml/serializer.pyi
 create mode 100644 typeshed/third_party/2/yaml/tokens.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Cipher/AES.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Cipher/ARC2.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Cipher/ARC4.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Cipher/Blowfish.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Cipher/CAST.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Cipher/DES.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Cipher/DES3.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Cipher/PKCS1_OAEP.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Cipher/PKCS1_v1_5.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Cipher/XOR.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Cipher/__init__.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Cipher/blockalgo.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Hash/HMAC.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Hash/MD2.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Hash/MD4.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Hash/MD5.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Hash/RIPEMD.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Hash/SHA.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Hash/SHA224.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Hash/SHA256.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Hash/SHA384.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Hash/SHA512.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Hash/__init__.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Hash/hashalgo.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Protocol/AllOrNothing.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Protocol/Chaffing.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Protocol/KDF.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Protocol/__init__.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/PublicKey/DSA.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/PublicKey/ElGamal.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/PublicKey/RSA.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/PublicKey/__init__.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/PublicKey/pubkey.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Random/Fortuna/FortunaAccumulator.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Random/Fortuna/FortunaGenerator.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Random/Fortuna/SHAd256.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Random/Fortuna/__init__.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Random/OSRNG/__init__.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Random/OSRNG/fallback.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Random/OSRNG/posix.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Random/OSRNG/rng_base.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Random/__init__.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Random/random.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Signature/PKCS1_PSS.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Signature/PKCS1_v1_5.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Signature/__init__.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Util/Counter.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Util/RFC1751.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Util/__init__.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Util/asn1.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Util/number.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Util/randpool.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/Util/strxor.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/__init__.pyi
 create mode 100644 typeshed/third_party/2and3/Crypto/pct_warnings.pyi
 create mode 100644 typeshed/third_party/2and3/atomicwrites/__init__.pyi
 copy mypy/test/__init__.py => typeshed/third_party/2and3/backports/__init__.pyi (100%)
 create mode 100644 typeshed/third_party/2and3/backports/ssl_match_hostname.pyi
 create mode 100644 typeshed/third_party/2and3/backports_abc.pyi
 create mode 100644 typeshed/third_party/2and3/boto/__init__.pyi
 create mode 100644 typeshed/third_party/2and3/boto/auth.pyi
 create mode 100644 typeshed/third_party/2and3/boto/auth_handler.pyi
 create mode 100644 typeshed/third_party/2and3/boto/compat.pyi
 create mode 100644 typeshed/third_party/2and3/boto/connection.pyi
 create mode 100644 typeshed/third_party/2and3/boto/ec2/__init__.pyi
 create mode 100644 typeshed/third_party/2and3/boto/elb/__init__.pyi
 create mode 100644 typeshed/third_party/2and3/boto/exception.pyi
 create mode 100644 typeshed/third_party/2and3/boto/plugin.pyi
 create mode 100644 typeshed/third_party/2and3/boto/regioninfo.pyi
 create mode 100644 typeshed/third_party/2and3/boto/s3/__init__.pyi
 create mode 100644 typeshed/third_party/2and3/boto/s3/acl.pyi
 create mode 100644 typeshed/third_party/2and3/boto/s3/bucket.pyi
 create mode 100644 typeshed/third_party/2and3/boto/s3/bucketlistresultset.pyi
 create mode 100644 typeshed/third_party/2and3/boto/s3/bucketlogging.pyi
 create mode 100644 typeshed/third_party/2and3/boto/s3/connection.pyi
 create mode 100644 typeshed/third_party/2and3/boto/s3/cors.pyi
 create mode 100644 typeshed/third_party/2and3/boto/s3/deletemarker.pyi
 create mode 100644 typeshed/third_party/2and3/boto/s3/key.pyi
 create mode 100644 typeshed/third_party/2and3/boto/s3/keyfile.pyi
 create mode 100644 typeshed/third_party/2and3/boto/s3/lifecycle.pyi
 create mode 100644 typeshed/third_party/2and3/boto/s3/multidelete.pyi
 create mode 100644 typeshed/third_party/2and3/boto/s3/multipart.pyi
 create mode 100644 typeshed/third_party/2and3/boto/s3/prefix.pyi
 create mode 100644 typeshed/third_party/2and3/boto/s3/tagging.pyi
 create mode 100644 typeshed/third_party/2and3/boto/s3/user.pyi
 create mode 100644 typeshed/third_party/2and3/boto/s3/website.pyi
 create mode 100644 typeshed/third_party/2and3/certifi.pyi
 create mode 100644 typeshed/third_party/2and3/characteristic/__init__.pyi
 create mode 100644 typeshed/third_party/2and3/jinja2/__init__.pyi
 create mode 100644 typeshed/third_party/2and3/jinja2/_compat.pyi
 create mode 100644 typeshed/third_party/2and3/jinja2/_stringdefs.pyi
 create mode 100644 typeshed/third_party/2and3/jinja2/bccache.pyi
 create mode 100644 typeshed/third_party/2and3/jinja2/compiler.pyi
 create mode 100644 typeshed/third_party/2and3/jinja2/constants.pyi
 create mode 100644 typeshed/third_party/2and3/jinja2/debug.pyi
 create mode 100644 typeshed/third_party/2and3/jinja2/defaults.pyi
 create mode 100644 typeshed/third_party/2and3/jinja2/environment.pyi
 create mode 100644 typeshed/third_party/2and3/jinja2/exceptions.pyi
 create mode 100644 typeshed/third_party/2and3/jinja2/ext.pyi
 create mode 100644 typeshed/third_party/2and3/jinja2/filters.pyi
 create mode 100644 typeshed/third_party/2and3/jinja2/lexer.pyi
 create mode 100644 typeshed/third_party/2and3/jinja2/loaders.pyi
 create mode 100644 typeshed/third_party/2and3/jinja2/meta.pyi
 create mode 100644 typeshed/third_party/2and3/jinja2/nodes.pyi
 create mode 100644 typeshed/third_party/2and3/jinja2/optimizer.pyi
 create mode 100644 typeshed/third_party/2and3/jinja2/parser.pyi
 create mode 100644 typeshed/third_party/2and3/jinja2/runtime.pyi
 create mode 100644 typeshed/third_party/2and3/jinja2/sandbox.pyi
 create mode 100644 typeshed/third_party/2and3/jinja2/tests.pyi
 create mode 100644 typeshed/third_party/2and3/jinja2/utils.pyi
 create mode 100644 typeshed/third_party/2and3/jinja2/visitor.pyi
 create mode 100644 typeshed/third_party/2and3/markupsafe/__init__.pyi
 create mode 100644 typeshed/third_party/2and3/markupsafe/_compat.pyi
 create mode 100644 typeshed/third_party/2and3/markupsafe/_constants.pyi
 create mode 100644 typeshed/third_party/2and3/markupsafe/_native.pyi
 create mode 100644 typeshed/third_party/2and3/markupsafe/_speedups.pyi
 create mode 100644 typeshed/third_party/2and3/mypy_extensions.pyi
 create mode 100644 typeshed/third_party/2and3/pymysql/__init__.pyi
 create mode 100644 typeshed/third_party/2and3/pymysql/charset.pyi
 create mode 100644 typeshed/third_party/2and3/pymysql/connections.pyi
 create mode 100644 typeshed/third_party/2and3/pymysql/constants/CLIENT.pyi
 create mode 100644 typeshed/third_party/2and3/pymysql/constants/COMMAND.pyi
 create mode 100644 typeshed/third_party/2and3/pymysql/constants/ER.pyi
 create mode 100644 typeshed/third_party/2and3/pymysql/constants/FIELD_TYPE.pyi
 create mode 100644 typeshed/third_party/2and3/pymysql/constants/FLAG.pyi
 create mode 100644 typeshed/third_party/2and3/pymysql/constants/SERVER_STATUS.pyi
 create mode 100644 typeshed/third_party/2and3/pymysql/constants/__init__.pyi
 create mode 100644 typeshed/third_party/2and3/pymysql/converters.pyi
 create mode 100644 typeshed/third_party/2and3/pymysql/cursors.pyi
 create mode 100644 typeshed/third_party/2and3/pymysql/err.pyi
 create mode 100644 typeshed/third_party/2and3/pymysql/times.pyi
 create mode 100644 typeshed/third_party/2and3/pymysql/util.pyi
 create mode 100644 typeshed/third_party/2and3/pytz/__init__.pyi
 create mode 100644 typeshed/third_party/2and3/pytz/lazy.pyi
 create mode 100644 typeshed/third_party/2and3/singledispatch.pyi
 create mode 100644 typeshed/third_party/2and3/sqlalchemy/__init__.pyi
 create mode 100644 typeshed/third_party/2and3/sqlalchemy/databases/__init__.pyi
 create mode 100644 typeshed/third_party/2and3/sqlalchemy/databases/mysql.pyi
 create mode 100644 typeshed/third_party/2and3/sqlalchemy/dialects/__init__.pyi
 create mode 100644 typeshed/third_party/2and3/sqlalchemy/dialects/mysql/__init__.pyi
 create mode 100644 typeshed/third_party/2and3/sqlalchemy/dialects/mysql/base.pyi
 create mode 100644 typeshed/third_party/2and3/sqlalchemy/engine/__init__.pyi
 create mode 100644 typeshed/third_party/2and3/sqlalchemy/engine/base.pyi
 create mode 100644 typeshed/third_party/2and3/sqlalchemy/engine/strategies.pyi
 create mode 100644 typeshed/third_party/2and3/sqlalchemy/engine/url.pyi
 create mode 100644 typeshed/third_party/2and3/sqlalchemy/exc.pyi
 create mode 100644 typeshed/third_party/2and3/sqlalchemy/inspection.pyi
 create mode 100644 typeshed/third_party/2and3/sqlalchemy/log.pyi
 create mode 100644 typeshed/third_party/2and3/sqlalchemy/orm/__init__.pyi
 create mode 100644 typeshed/third_party/2and3/sqlalchemy/orm/session.pyi
 create mode 100644 typeshed/third_party/2and3/sqlalchemy/orm/util.pyi
 create mode 100644 typeshed/third_party/2and3/sqlalchemy/pool.pyi
 create mode 100644 typeshed/third_party/2and3/sqlalchemy/schema.pyi
 create mode 100644 typeshed/third_party/2and3/sqlalchemy/sql/__init__.pyi
 create mode 100644 typeshed/third_party/2and3/sqlalchemy/sql/annotation.pyi
 create mode 100644 typeshed/third_party/2and3/sqlalchemy/sql/base.pyi
 create mode 100644 typeshed/third_party/2and3/sqlalchemy/sql/ddl.pyi
 create mode 100644 typeshed/third_party/2and3/sqlalchemy/sql/dml.pyi
 create mode 100644 typeshed/third_party/2and3/sqlalchemy/sql/elements.pyi
 create mode 100644 typeshed/third_party/2and3/sqlalchemy/sql/expression.pyi
 create mode 100644 typeshed/third_party/2and3/sqlalchemy/sql/functions.pyi
 create mode 100644 typeshed/third_party/2and3/sqlalchemy/sql/naming.pyi
 create mode 100644 typeshed/third_party/2and3/sqlalchemy/sql/operators.pyi
 create mode 100644 typeshed/third_party/2and3/sqlalchemy/sql/schema.pyi
 create mode 100644 typeshed/third_party/2and3/sqlalchemy/sql/selectable.pyi
 create mode 100644 typeshed/third_party/2and3/sqlalchemy/sql/sqltypes.pyi
 create mode 100644 typeshed/third_party/2and3/sqlalchemy/sql/type_api.pyi
 create mode 100644 typeshed/third_party/2and3/sqlalchemy/sql/visitors.pyi
 create mode 100644 typeshed/third_party/2and3/sqlalchemy/types.pyi
 create mode 100644 typeshed/third_party/2and3/sqlalchemy/util/__init__.pyi
 create mode 100644 typeshed/third_party/2and3/sqlalchemy/util/_collections.pyi
 create mode 100644 typeshed/third_party/2and3/sqlalchemy/util/compat.pyi
 create mode 100644 typeshed/third_party/2and3/sqlalchemy/util/deprecations.pyi
 create mode 100644 typeshed/third_party/2and3/sqlalchemy/util/langhelpers.pyi
 create mode 100644 typeshed/third_party/2and3/ujson.pyi
 create mode 100644 typeshed/third_party/3.6/click/__init__.pyi
 create mode 100644 typeshed/third_party/3.6/click/core.pyi
 create mode 100644 typeshed/third_party/3.6/click/decorators.pyi
 create mode 100644 typeshed/third_party/3.6/click/exceptions.pyi
 create mode 100644 typeshed/third_party/3.6/click/formatting.pyi
 create mode 100644 typeshed/third_party/3.6/click/globals.pyi
 create mode 100644 typeshed/third_party/3.6/click/parser.pyi
 create mode 100644 typeshed/third_party/3.6/click/termui.pyi
 create mode 100644 typeshed/third_party/3.6/click/types.pyi
 create mode 100644 typeshed/third_party/3.6/click/utils.pyi
 copy mypy/test/__init__.py => typeshed/third_party/3/dateutil/__init__.pyi (100%)
 create mode 100644 typeshed/third_party/3/dateutil/parser.pyi
 create mode 100644 typeshed/third_party/3/dateutil/relativedelta.pyi
 create mode 100644 typeshed/third_party/3/dateutil/tz/__init__.pyi
 create mode 100644 typeshed/third_party/3/dateutil/tz/_common.pyi
 create mode 100644 typeshed/third_party/3/dateutil/tz/tz.pyi
 create mode 100644 typeshed/third_party/3/docutils/__init__.pyi
 create mode 100644 typeshed/third_party/3/docutils/examples.pyi
 create mode 100644 typeshed/third_party/3/docutils/nodes.pyi
 create mode 100644 typeshed/third_party/3/docutils/parsers/__init__.pyi
 copy mypy/test/__init__.py => typeshed/third_party/3/docutils/parsers/rst/__init__.pyi (100%)
 create mode 100644 typeshed/third_party/3/docutils/parsers/rst/nodes.pyi
 create mode 100644 typeshed/third_party/3/docutils/parsers/rst/roles.pyi
 create mode 100644 typeshed/third_party/3/docutils/parsers/rst/states.pyi
 create mode 100644 typeshed/third_party/3/enum.pyi
 create mode 100644 typeshed/third_party/3/itsdangerous.pyi
 copy mypy/test/__init__.py => typeshed/third_party/3/lxml/__init__.pyi (100%)
 create mode 100644 typeshed/third_party/3/lxml/etree.pyi
 create mode 100644 typeshed/third_party/3/lxml/objectify.pyi
 create mode 100644 typeshed/third_party/3/pkg_resources.pyi
 create mode 100644 typeshed/third_party/3/requests/__init__.pyi
 create mode 100644 typeshed/third_party/3/requests/adapters.pyi
 create mode 100644 typeshed/third_party/3/requests/api.pyi
 create mode 100644 typeshed/third_party/3/requests/auth.pyi
 create mode 100644 typeshed/third_party/3/requests/compat.pyi
 create mode 100644 typeshed/third_party/3/requests/cookies.pyi
 create mode 100644 typeshed/third_party/3/requests/exceptions.pyi
 create mode 100644 typeshed/third_party/3/requests/hooks.pyi
 create mode 100644 typeshed/third_party/3/requests/models.pyi
 create mode 100644 typeshed/third_party/3/requests/packages/__init__.pyi
 create mode 100644 typeshed/third_party/3/requests/packages/urllib3/__init__.pyi
 create mode 100644 typeshed/third_party/3/requests/packages/urllib3/_collections.pyi
 create mode 100644 typeshed/third_party/3/requests/packages/urllib3/connection.pyi
 create mode 100644 typeshed/third_party/3/requests/packages/urllib3/connectionpool.pyi
 create mode 100644 typeshed/third_party/3/requests/packages/urllib3/contrib/__init__.pyi
 create mode 100644 typeshed/third_party/3/requests/packages/urllib3/exceptions.pyi
 create mode 100644 typeshed/third_party/3/requests/packages/urllib3/fields.pyi
 create mode 100644 typeshed/third_party/3/requests/packages/urllib3/filepost.pyi
 create mode 100644 typeshed/third_party/3/requests/packages/urllib3/packages/__init__.pyi
 create mode 100644 typeshed/third_party/3/requests/packages/urllib3/packages/ssl_match_hostname/__init__.pyi
 create mode 100644 typeshed/third_party/3/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.pyi
 create mode 100644 typeshed/third_party/3/requests/packages/urllib3/poolmanager.pyi
 create mode 100644 typeshed/third_party/3/requests/packages/urllib3/request.pyi
 create mode 100644 typeshed/third_party/3/requests/packages/urllib3/response.pyi
 create mode 100644 typeshed/third_party/3/requests/packages/urllib3/util/__init__.pyi
 create mode 100644 typeshed/third_party/3/requests/packages/urllib3/util/connection.pyi
 create mode 100644 typeshed/third_party/3/requests/packages/urllib3/util/request.pyi
 create mode 100644 typeshed/third_party/3/requests/packages/urllib3/util/response.pyi
 create mode 100644 typeshed/third_party/3/requests/packages/urllib3/util/retry.pyi
 create mode 100644 typeshed/third_party/3/requests/packages/urllib3/util/ssl_.pyi
 create mode 100644 typeshed/third_party/3/requests/packages/urllib3/util/timeout.pyi
 create mode 100644 typeshed/third_party/3/requests/packages/urllib3/util/url.pyi
 create mode 100644 typeshed/third_party/3/requests/sessions.pyi
 create mode 100644 typeshed/third_party/3/requests/status_codes.pyi
 create mode 100644 typeshed/third_party/3/requests/structures.pyi
 create mode 100644 typeshed/third_party/3/requests/utils.pyi
 create mode 100644 typeshed/third_party/3/six/__init__.pyi
 create mode 100644 typeshed/third_party/3/six/moves/__init__.pyi
 create mode 100644 typeshed/third_party/3/six/moves/cPickle.pyi
 create mode 100644 typeshed/third_party/3/six/moves/urllib/__init__.pyi
 create mode 100644 typeshed/third_party/3/six/moves/urllib/error.pyi
 create mode 100644 typeshed/third_party/3/six/moves/urllib/parse.pyi
 create mode 100644 typeshed/third_party/3/six/moves/urllib/request.pyi
 create mode 100644 typeshed/third_party/3/six/moves/urllib/response.pyi
 create mode 100644 typeshed/third_party/3/six/moves/urllib/robotparser.pyi
 create mode 100644 typeshed/third_party/3/six/moves/urllib_error.pyi
 create mode 100644 typeshed/third_party/3/six/moves/urllib_parse.pyi
 create mode 100644 typeshed/third_party/3/six/moves/urllib_request.pyi
 create mode 100644 typeshed/third_party/3/six/moves/urllib_response.pyi
 create mode 100644 typeshed/third_party/3/six/moves/urllib_robotparser.pyi
 create mode 100644 typeshed/third_party/3/typed_ast/__init__.pyi
 create mode 100644 typeshed/third_party/3/typed_ast/ast27.pyi
 create mode 100644 typeshed/third_party/3/typed_ast/ast35.pyi
 create mode 100644 typeshed/third_party/3/typed_ast/conversions.pyi
 create mode 100644 typeshed/third_party/3/werkzeug/__init__.pyi
 create mode 100644 typeshed/third_party/3/werkzeug/_compat.pyi
 create mode 100644 typeshed/third_party/3/werkzeug/_internal.pyi
 create mode 100644 typeshed/third_party/3/werkzeug/_reloader.pyi
 create mode 100644 typeshed/third_party/3/werkzeug/contrib/__init__.pyi
 create mode 100644 typeshed/third_party/3/werkzeug/contrib/atom.pyi
 create mode 100644 typeshed/third_party/3/werkzeug/contrib/cache.pyi
 create mode 100644 typeshed/third_party/3/werkzeug/contrib/fixers.pyi
 create mode 100644 typeshed/third_party/3/werkzeug/contrib/iterio.pyi
 create mode 100644 typeshed/third_party/3/werkzeug/contrib/jsrouting.pyi
 create mode 100644 typeshed/third_party/3/werkzeug/contrib/limiter.pyi
 create mode 100644 typeshed/third_party/3/werkzeug/contrib/lint.pyi
 create mode 100644 typeshed/third_party/3/werkzeug/contrib/profiler.pyi
 create mode 100644 typeshed/third_party/3/werkzeug/contrib/securecookie.pyi
 create mode 100644 typeshed/third_party/3/werkzeug/contrib/sessions.pyi
 create mode 100644 typeshed/third_party/3/werkzeug/contrib/testtools.pyi
 create mode 100644 typeshed/third_party/3/werkzeug/contrib/wrappers.pyi
 create mode 100644 typeshed/third_party/3/werkzeug/datastructures.pyi
 create mode 100644 typeshed/third_party/3/werkzeug/debug/__init__.pyi
 create mode 100644 typeshed/third_party/3/werkzeug/debug/console.pyi
 create mode 100644 typeshed/third_party/3/werkzeug/debug/repr.pyi
 create mode 100644 typeshed/third_party/3/werkzeug/debug/tbtools.pyi
 create mode 100644 typeshed/third_party/3/werkzeug/exceptions.pyi
 create mode 100644 typeshed/third_party/3/werkzeug/filesystem.pyi
 create mode 100644 typeshed/third_party/3/werkzeug/formparser.pyi
 create mode 100644 typeshed/third_party/3/werkzeug/http.pyi
 create mode 100644 typeshed/third_party/3/werkzeug/local.pyi
 create mode 100644 typeshed/third_party/3/werkzeug/posixemulation.pyi
 create mode 100644 typeshed/third_party/3/werkzeug/routing.pyi
 create mode 100644 typeshed/third_party/3/werkzeug/script.pyi
 create mode 100644 typeshed/third_party/3/werkzeug/security.pyi
 create mode 100644 typeshed/third_party/3/werkzeug/serving.pyi
 create mode 100644 typeshed/third_party/3/werkzeug/test.pyi
 create mode 100644 typeshed/third_party/3/werkzeug/testapp.pyi
 create mode 100644 typeshed/third_party/3/werkzeug/urls.pyi
 create mode 100644 typeshed/third_party/3/werkzeug/useragents.pyi
 create mode 100644 typeshed/third_party/3/werkzeug/utils.pyi
 create mode 100644 typeshed/third_party/3/werkzeug/wrappers.pyi
 create mode 100644 typeshed/third_party/3/werkzeug/wsgi.pyi

-- 
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