Received: by mail.netbsd.org (Postfix, from userid 605) id 7F09484DAB; Wed, 28 Nov 2018 08:15:40 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 603C784D80 for ; Wed, 28 Nov 2018 08:15:39 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id TRKpCzgJDACH for ; Wed, 28 Nov 2018 08:15:31 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B901384D2A for ; Wed, 28 Nov 2018 08:15:31 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id ADE4FFB1F; Wed, 28 Nov 2018 08:15:31 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_154339293183030" MIME-Version: 1.0 Date: Wed, 28 Nov 2018 08:15:31 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/lang To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20181128081531.ADE4FFB1F@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_154339293183030 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Wed Nov 28 08:15:31 UTC 2018 Modified Files: pkgsrc/lang: Makefile Added Files: pkgsrc/lang/py-mypy: ALTERNATIVES DESCR Makefile PLIST distinfo Log Message: py-mypy: added version 0.641 Add type annotations to your Python programs, and use mypy to type check them. Mypy is essentially a Python linter on steroids, and it can catch many programming errors by analyzing your program, without actually having to run it. Mypy has a powerful type system with features such as type inference, gradual typing, generics and union types. To generate a diff of this commit: cvs rdiff -u -r1.500 -r1.501 pkgsrc/lang/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/lang/py-mypy/ALTERNATIVES \ pkgsrc/lang/py-mypy/DESCR pkgsrc/lang/py-mypy/Makefile \ pkgsrc/lang/py-mypy/PLIST pkgsrc/lang/py-mypy/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_154339293183030 Content-Disposition: inline Content-Length: 79949 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/Makefile diff -u pkgsrc/lang/Makefile:1.500 pkgsrc/lang/Makefile:1.501 --- pkgsrc/lang/Makefile:1.500 Wed Nov 21 11:25:00 2018 +++ pkgsrc/lang/Makefile Wed Nov 28 08:15:31 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.500 2018/11/21 11:25:00 jperkin Exp $ +# $NetBSD: Makefile,v 1.501 2018/11/28 08:15:31 adam Exp $ # COMMENT= Programming languages @@ -199,6 +199,8 @@ SUBDIR+= py-execjs SUBDIR+= py-hy SUBDIR+= py-js2py SUBDIR+= py-jsparser +SUBDIR+= py-mypy +SUBDIR+= py-mypy_extensions SUBDIR+= py-parso SUBDIR+= py-paver SUBDIR+= py-pyrex Added files: Index: pkgsrc/lang/py-mypy/ALTERNATIVES diff -u /dev/null pkgsrc/lang/py-mypy/ALTERNATIVES:1.1 --- /dev/null Wed Nov 28 08:15:31 2018 +++ pkgsrc/lang/py-mypy/ALTERNATIVES Wed Nov 28 08:15:31 2018 @@ -0,0 +1,3 @@ +bin/dmypy @PREFIX@/bin/dmypy-@PYVERSSUFFIX@ +bin/mypy @PREFIX@/bin/mypy-@PYVERSSUFFIX@ +bin/stubgen @PREFIX@/bin/stubgen-@PYVERSSUFFIX@ Index: pkgsrc/lang/py-mypy/DESCR diff -u /dev/null pkgsrc/lang/py-mypy/DESCR:1.1 --- /dev/null Wed Nov 28 08:15:31 2018 +++ pkgsrc/lang/py-mypy/DESCR Wed Nov 28 08:15:31 2018 @@ -0,0 +1,5 @@ +Add type annotations to your Python programs, and use mypy to type check them. +Mypy is essentially a Python linter on steroids, and it can catch many +programming errors by analyzing your program, without actually having to run +it. Mypy has a powerful type system with features such as type inference, +gradual typing, generics and union types. Index: pkgsrc/lang/py-mypy/Makefile diff -u /dev/null pkgsrc/lang/py-mypy/Makefile:1.1 --- /dev/null Wed Nov 28 08:15:31 2018 +++ pkgsrc/lang/py-mypy/Makefile Wed Nov 28 08:15:31 2018 @@ -0,0 +1,35 @@ +# $NetBSD: Makefile,v 1.1 2018/11/28 08:15:31 adam Exp $ + +DISTNAME= mypy-0.641 +PKGNAME= ${PYPKGPREFIX}-${DISTNAME} +CATEGORIES= lang python +MASTER_SITES= ${MASTER_SITE_PYPI:=m/mypy/} + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= http://www.mypy-lang.org/ +COMMENT= Optional static typing for Python +LICENSE= mit + +DEPENDS+= ${PYPKGPREFIX}-typed-ast>=1.1.0:../../devel/py-typed-ast +DEPENDS+= ${PYPKGPREFIX}-mypy_extensions>=0.4.0:../../lang/py-mypy_extensions + +.include "../../lang/python/pyversion.mk" +.if ${_PYTHON_VERSION} == 34 +DEPENDS+= ${PYPKGPREFIX}-typing>=3.5.3:../../devel/py-typing +.endif + +USE_LANGUAGES= # none + +PYTHON_VERSIONS_INCOMPATIBLE= 27 + +REPLACE_PYTHON= mypy/typeshed/tests/*.py + +post-install: + cd ${DESTDIR}${PREFIX}/bin && \ + ${MV} dmypy dmypy-${PYVERSSUFFIX} && \ + ${MV} mypy mypy-${PYVERSSUFFIX} && \ + ${MV} stubgen stubgen-${PYVERSSUFFIX} || ${TRUE} + +.include "../../lang/python/application.mk" +.include "../../lang/python/egg.mk" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/lang/py-mypy/PLIST diff -u /dev/null pkgsrc/lang/py-mypy/PLIST:1.1 --- /dev/null Wed Nov 28 08:15:31 2018 +++ pkgsrc/lang/py-mypy/PLIST Wed Nov 28 08:15:31 2018 @@ -0,0 +1,1396 @@ +@comment $NetBSD: PLIST,v 1.1 2018/11/28 08:15:31 adam Exp $ +bin/dmypy-${PYVERSSUFFIX} +bin/mypy-${PYVERSSUFFIX} +bin/stubgen-${PYVERSSUFFIX} +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/entry_points.txt +${PYSITELIB}/${EGG_INFODIR}/requires.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt +${PYSITELIB}/mypy/__init__.py +${PYSITELIB}/mypy/__init__.pyc +${PYSITELIB}/mypy/__init__.pyo +${PYSITELIB}/mypy/__main__.py +${PYSITELIB}/mypy/__main__.pyc +${PYSITELIB}/mypy/__main__.pyo +${PYSITELIB}/mypy/api.py +${PYSITELIB}/mypy/api.pyc +${PYSITELIB}/mypy/api.pyo +${PYSITELIB}/mypy/applytype.py +${PYSITELIB}/mypy/applytype.pyc +${PYSITELIB}/mypy/applytype.pyo +${PYSITELIB}/mypy/binder.py +${PYSITELIB}/mypy/binder.pyc +${PYSITELIB}/mypy/binder.pyo +${PYSITELIB}/mypy/bogus_type.py +${PYSITELIB}/mypy/bogus_type.pyc +${PYSITELIB}/mypy/bogus_type.pyo +${PYSITELIB}/mypy/build.py +${PYSITELIB}/mypy/build.pyc +${PYSITELIB}/mypy/build.pyo +${PYSITELIB}/mypy/checker.py +${PYSITELIB}/mypy/checker.pyc +${PYSITELIB}/mypy/checker.pyo +${PYSITELIB}/mypy/checkexpr.py +${PYSITELIB}/mypy/checkexpr.pyc +${PYSITELIB}/mypy/checkexpr.pyo +${PYSITELIB}/mypy/checkmember.py +${PYSITELIB}/mypy/checkmember.pyc +${PYSITELIB}/mypy/checkmember.pyo +${PYSITELIB}/mypy/checkstrformat.py +${PYSITELIB}/mypy/checkstrformat.pyc +${PYSITELIB}/mypy/checkstrformat.pyo +${PYSITELIB}/mypy/constraints.py +${PYSITELIB}/mypy/constraints.pyc +${PYSITELIB}/mypy/constraints.pyo +${PYSITELIB}/mypy/defaults.py +${PYSITELIB}/mypy/defaults.pyc +${PYSITELIB}/mypy/defaults.pyo +${PYSITELIB}/mypy/dmypy.py +${PYSITELIB}/mypy/dmypy.pyc +${PYSITELIB}/mypy/dmypy.pyo +${PYSITELIB}/mypy/dmypy_server.py +${PYSITELIB}/mypy/dmypy_server.pyc +${PYSITELIB}/mypy/dmypy_server.pyo +${PYSITELIB}/mypy/dmypy_util.py +${PYSITELIB}/mypy/dmypy_util.pyc +${PYSITELIB}/mypy/dmypy_util.pyo +${PYSITELIB}/mypy/erasetype.py +${PYSITELIB}/mypy/erasetype.pyc +${PYSITELIB}/mypy/erasetype.pyo +${PYSITELIB}/mypy/errors.py +${PYSITELIB}/mypy/errors.pyc +${PYSITELIB}/mypy/errors.pyo +${PYSITELIB}/mypy/expandtype.py +${PYSITELIB}/mypy/expandtype.pyc +${PYSITELIB}/mypy/expandtype.pyo +${PYSITELIB}/mypy/experiments.py +${PYSITELIB}/mypy/experiments.pyc +${PYSITELIB}/mypy/experiments.pyo +${PYSITELIB}/mypy/exprtotype.py +${PYSITELIB}/mypy/exprtotype.pyc +${PYSITELIB}/mypy/exprtotype.pyo +${PYSITELIB}/mypy/fastparse.py +${PYSITELIB}/mypy/fastparse.pyc +${PYSITELIB}/mypy/fastparse.pyo +${PYSITELIB}/mypy/fastparse2.py +${PYSITELIB}/mypy/fastparse2.pyc +${PYSITELIB}/mypy/fastparse2.pyo +${PYSITELIB}/mypy/find_sources.py +${PYSITELIB}/mypy/find_sources.pyc +${PYSITELIB}/mypy/find_sources.pyo +${PYSITELIB}/mypy/fixup.py +${PYSITELIB}/mypy/fixup.pyc +${PYSITELIB}/mypy/fixup.pyo +${PYSITELIB}/mypy/fscache.py +${PYSITELIB}/mypy/fscache.pyc +${PYSITELIB}/mypy/fscache.pyo +${PYSITELIB}/mypy/fswatcher.py +${PYSITELIB}/mypy/fswatcher.pyc +${PYSITELIB}/mypy/fswatcher.pyo +${PYSITELIB}/mypy/gclogger.py +${PYSITELIB}/mypy/gclogger.pyc +${PYSITELIB}/mypy/gclogger.pyo +${PYSITELIB}/mypy/git.py +${PYSITELIB}/mypy/git.pyc +${PYSITELIB}/mypy/git.pyo +${PYSITELIB}/mypy/indirection.py +${PYSITELIB}/mypy/indirection.pyc +${PYSITELIB}/mypy/indirection.pyo +${PYSITELIB}/mypy/infer.py +${PYSITELIB}/mypy/infer.pyc +${PYSITELIB}/mypy/infer.pyo +${PYSITELIB}/mypy/interpreted_plugin.py +${PYSITELIB}/mypy/interpreted_plugin.pyc +${PYSITELIB}/mypy/interpreted_plugin.pyo +${PYSITELIB}/mypy/join.py +${PYSITELIB}/mypy/join.pyc +${PYSITELIB}/mypy/join.pyo +${PYSITELIB}/mypy/literals.py +${PYSITELIB}/mypy/literals.pyc +${PYSITELIB}/mypy/literals.pyo +${PYSITELIB}/mypy/main.py +${PYSITELIB}/mypy/main.pyc +${PYSITELIB}/mypy/main.pyo +${PYSITELIB}/mypy/maptype.py +${PYSITELIB}/mypy/maptype.pyc +${PYSITELIB}/mypy/maptype.pyo +${PYSITELIB}/mypy/meet.py +${PYSITELIB}/mypy/meet.pyc +${PYSITELIB}/mypy/meet.pyo +${PYSITELIB}/mypy/memprofile.py +${PYSITELIB}/mypy/memprofile.pyc +${PYSITELIB}/mypy/memprofile.pyo +${PYSITELIB}/mypy/messages.py +${PYSITELIB}/mypy/messages.pyc +${PYSITELIB}/mypy/messages.pyo +${PYSITELIB}/mypy/modulefinder.py +${PYSITELIB}/mypy/modulefinder.pyc +${PYSITELIB}/mypy/modulefinder.pyo +${PYSITELIB}/mypy/moduleinfo.py +${PYSITELIB}/mypy/moduleinfo.pyc +${PYSITELIB}/mypy/moduleinfo.pyo +${PYSITELIB}/mypy/mypyc_hacks.py +${PYSITELIB}/mypy/mypyc_hacks.pyc +${PYSITELIB}/mypy/mypyc_hacks.pyo +${PYSITELIB}/mypy/nodes.py +${PYSITELIB}/mypy/nodes.pyc +${PYSITELIB}/mypy/nodes.pyo +${PYSITELIB}/mypy/options.py +${PYSITELIB}/mypy/options.pyc +${PYSITELIB}/mypy/options.pyo +${PYSITELIB}/mypy/parse.py +${PYSITELIB}/mypy/parse.pyc +${PYSITELIB}/mypy/parse.pyo +${PYSITELIB}/mypy/plugin.py +${PYSITELIB}/mypy/plugin.pyc +${PYSITELIB}/mypy/plugin.pyo +${PYSITELIB}/mypy/plugins/__init__.py +${PYSITELIB}/mypy/plugins/__init__.pyc +${PYSITELIB}/mypy/plugins/__init__.pyo +${PYSITELIB}/mypy/plugins/attrs.py +${PYSITELIB}/mypy/plugins/attrs.pyc +${PYSITELIB}/mypy/plugins/attrs.pyo +${PYSITELIB}/mypy/plugins/common.py +${PYSITELIB}/mypy/plugins/common.pyc +${PYSITELIB}/mypy/plugins/common.pyo +${PYSITELIB}/mypy/plugins/dataclasses.py +${PYSITELIB}/mypy/plugins/dataclasses.pyc +${PYSITELIB}/mypy/plugins/dataclasses.pyo +${PYSITELIB}/mypy/report.py +${PYSITELIB}/mypy/report.pyc +${PYSITELIB}/mypy/report.pyo +${PYSITELIB}/mypy/sametypes.py +${PYSITELIB}/mypy/sametypes.pyc +${PYSITELIB}/mypy/sametypes.pyo +${PYSITELIB}/mypy/scope.py +${PYSITELIB}/mypy/scope.pyc +${PYSITELIB}/mypy/scope.pyo +${PYSITELIB}/mypy/semanal.py +${PYSITELIB}/mypy/semanal.pyc +${PYSITELIB}/mypy/semanal.pyo +${PYSITELIB}/mypy/semanal_enum.py +${PYSITELIB}/mypy/semanal_enum.pyc +${PYSITELIB}/mypy/semanal_enum.pyo +${PYSITELIB}/mypy/semanal_namedtuple.py +${PYSITELIB}/mypy/semanal_namedtuple.pyc +${PYSITELIB}/mypy/semanal_namedtuple.pyo +${PYSITELIB}/mypy/semanal_newtype.py +${PYSITELIB}/mypy/semanal_newtype.pyc +${PYSITELIB}/mypy/semanal_newtype.pyo +${PYSITELIB}/mypy/semanal_pass1.py +${PYSITELIB}/mypy/semanal_pass1.pyc +${PYSITELIB}/mypy/semanal_pass1.pyo +${PYSITELIB}/mypy/semanal_pass3.py +${PYSITELIB}/mypy/semanal_pass3.pyc +${PYSITELIB}/mypy/semanal_pass3.pyo +${PYSITELIB}/mypy/semanal_shared.py +${PYSITELIB}/mypy/semanal_shared.pyc +${PYSITELIB}/mypy/semanal_shared.pyo +${PYSITELIB}/mypy/semanal_typeddict.py +${PYSITELIB}/mypy/semanal_typeddict.pyc +${PYSITELIB}/mypy/semanal_typeddict.pyo +${PYSITELIB}/mypy/server/__init__.py +${PYSITELIB}/mypy/server/__init__.pyc +${PYSITELIB}/mypy/server/__init__.pyo +${PYSITELIB}/mypy/server/astdiff.py +${PYSITELIB}/mypy/server/astdiff.pyc +${PYSITELIB}/mypy/server/astdiff.pyo +${PYSITELIB}/mypy/server/astmerge.py +${PYSITELIB}/mypy/server/astmerge.pyc +${PYSITELIB}/mypy/server/astmerge.pyo +${PYSITELIB}/mypy/server/aststrip.py +${PYSITELIB}/mypy/server/aststrip.pyc +${PYSITELIB}/mypy/server/aststrip.pyo +${PYSITELIB}/mypy/server/deps.py +${PYSITELIB}/mypy/server/deps.pyc +${PYSITELIB}/mypy/server/deps.pyo +${PYSITELIB}/mypy/server/mergecheck.py +${PYSITELIB}/mypy/server/mergecheck.pyc +${PYSITELIB}/mypy/server/mergecheck.pyo +${PYSITELIB}/mypy/server/objgraph.py +${PYSITELIB}/mypy/server/objgraph.pyc +${PYSITELIB}/mypy/server/objgraph.pyo +${PYSITELIB}/mypy/server/subexpr.py +${PYSITELIB}/mypy/server/subexpr.pyc +${PYSITELIB}/mypy/server/subexpr.pyo +${PYSITELIB}/mypy/server/target.py +${PYSITELIB}/mypy/server/target.pyc +${PYSITELIB}/mypy/server/target.pyo +${PYSITELIB}/mypy/server/trigger.py +${PYSITELIB}/mypy/server/trigger.pyc +${PYSITELIB}/mypy/server/trigger.pyo +${PYSITELIB}/mypy/server/update.py +${PYSITELIB}/mypy/server/update.pyc +${PYSITELIB}/mypy/server/update.pyo +${PYSITELIB}/mypy/sharedparse.py +${PYSITELIB}/mypy/sharedparse.pyc +${PYSITELIB}/mypy/sharedparse.pyo +${PYSITELIB}/mypy/sitepkgs.py +${PYSITELIB}/mypy/sitepkgs.pyc +${PYSITELIB}/mypy/sitepkgs.pyo +${PYSITELIB}/mypy/solve.py +${PYSITELIB}/mypy/solve.pyc +${PYSITELIB}/mypy/solve.pyo +${PYSITELIB}/mypy/stats.py +${PYSITELIB}/mypy/stats.pyc +${PYSITELIB}/mypy/stats.pyo +${PYSITELIB}/mypy/strconv.py +${PYSITELIB}/mypy/strconv.pyc +${PYSITELIB}/mypy/strconv.pyo +${PYSITELIB}/mypy/stubgen.py +${PYSITELIB}/mypy/stubgen.pyc +${PYSITELIB}/mypy/stubgen.pyo +${PYSITELIB}/mypy/stubgenc.py +${PYSITELIB}/mypy/stubgenc.pyc +${PYSITELIB}/mypy/stubgenc.pyo +${PYSITELIB}/mypy/stubutil.py +${PYSITELIB}/mypy/stubutil.pyc +${PYSITELIB}/mypy/stubutil.pyo +${PYSITELIB}/mypy/subtypes.py +${PYSITELIB}/mypy/subtypes.pyc +${PYSITELIB}/mypy/subtypes.pyo +${PYSITELIB}/mypy/test/__init__.py +${PYSITELIB}/mypy/test/__init__.pyc +${PYSITELIB}/mypy/test/__init__.pyo +${PYSITELIB}/mypy/test/collect.py +${PYSITELIB}/mypy/test/collect.pyc +${PYSITELIB}/mypy/test/collect.pyo +${PYSITELIB}/mypy/test/config.py +${PYSITELIB}/mypy/test/config.pyc +${PYSITELIB}/mypy/test/config.pyo +${PYSITELIB}/mypy/test/data.py +${PYSITELIB}/mypy/test/data.pyc +${PYSITELIB}/mypy/test/data.pyo +${PYSITELIB}/mypy/test/helpers.py +${PYSITELIB}/mypy/test/helpers.pyc +${PYSITELIB}/mypy/test/helpers.pyo +${PYSITELIB}/mypy/test/testargs.py +${PYSITELIB}/mypy/test/testargs.pyc +${PYSITELIB}/mypy/test/testargs.pyo +${PYSITELIB}/mypy/test/testcheck.py +${PYSITELIB}/mypy/test/testcheck.pyc +${PYSITELIB}/mypy/test/testcheck.pyo +${PYSITELIB}/mypy/test/testcmdline.py +${PYSITELIB}/mypy/test/testcmdline.pyc +${PYSITELIB}/mypy/test/testcmdline.pyo +${PYSITELIB}/mypy/test/testdeps.py +${PYSITELIB}/mypy/test/testdeps.pyc +${PYSITELIB}/mypy/test/testdeps.pyo +${PYSITELIB}/mypy/test/testdiff.py +${PYSITELIB}/mypy/test/testdiff.pyc +${PYSITELIB}/mypy/test/testdiff.pyo +${PYSITELIB}/mypy/test/testerrorstream.py +${PYSITELIB}/mypy/test/testerrorstream.pyc +${PYSITELIB}/mypy/test/testerrorstream.pyo +${PYSITELIB}/mypy/test/testextensions.py +${PYSITELIB}/mypy/test/testextensions.pyc +${PYSITELIB}/mypy/test/testextensions.pyo +${PYSITELIB}/mypy/test/testfinegrained.py +${PYSITELIB}/mypy/test/testfinegrained.pyc +${PYSITELIB}/mypy/test/testfinegrained.pyo +${PYSITELIB}/mypy/test/testfinegrainedcache.py +${PYSITELIB}/mypy/test/testfinegrainedcache.pyc +${PYSITELIB}/mypy/test/testfinegrainedcache.pyo +${PYSITELIB}/mypy/test/testgraph.py +${PYSITELIB}/mypy/test/testgraph.pyc +${PYSITELIB}/mypy/test/testgraph.pyo +${PYSITELIB}/mypy/test/testinfer.py +${PYSITELIB}/mypy/test/testinfer.pyc +${PYSITELIB}/mypy/test/testinfer.pyo +${PYSITELIB}/mypy/test/testmerge.py +${PYSITELIB}/mypy/test/testmerge.pyc +${PYSITELIB}/mypy/test/testmerge.pyo +${PYSITELIB}/mypy/test/testmoduleinfo.py +${PYSITELIB}/mypy/test/testmoduleinfo.pyc +${PYSITELIB}/mypy/test/testmoduleinfo.pyo +${PYSITELIB}/mypy/test/testparse.py +${PYSITELIB}/mypy/test/testparse.pyc +${PYSITELIB}/mypy/test/testparse.pyo +${PYSITELIB}/mypy/test/testpep561.py +${PYSITELIB}/mypy/test/testpep561.pyc +${PYSITELIB}/mypy/test/testpep561.pyo +${PYSITELIB}/mypy/test/testpythoneval.py +${PYSITELIB}/mypy/test/testpythoneval.pyc +${PYSITELIB}/mypy/test/testpythoneval.pyo +${PYSITELIB}/mypy/test/testreports.py +${PYSITELIB}/mypy/test/testreports.pyc +${PYSITELIB}/mypy/test/testreports.pyo +${PYSITELIB}/mypy/test/testsamples.py +${PYSITELIB}/mypy/test/testsamples.pyc +${PYSITELIB}/mypy/test/testsamples.pyo +${PYSITELIB}/mypy/test/testsemanal.py +${PYSITELIB}/mypy/test/testsemanal.pyc +${PYSITELIB}/mypy/test/testsemanal.pyo +${PYSITELIB}/mypy/test/testsolve.py +${PYSITELIB}/mypy/test/testsolve.pyc +${PYSITELIB}/mypy/test/testsolve.pyo +${PYSITELIB}/mypy/test/teststubgen.py +${PYSITELIB}/mypy/test/teststubgen.pyc +${PYSITELIB}/mypy/test/teststubgen.pyo +${PYSITELIB}/mypy/test/testsubtypes.py +${PYSITELIB}/mypy/test/testsubtypes.pyc +${PYSITELIB}/mypy/test/testsubtypes.pyo +${PYSITELIB}/mypy/test/testtransform.py +${PYSITELIB}/mypy/test/testtransform.pyc +${PYSITELIB}/mypy/test/testtransform.pyo +${PYSITELIB}/mypy/test/testtypegen.py +${PYSITELIB}/mypy/test/testtypegen.pyc +${PYSITELIB}/mypy/test/testtypegen.pyo +${PYSITELIB}/mypy/test/testtypes.py +${PYSITELIB}/mypy/test/testtypes.pyc +${PYSITELIB}/mypy/test/testtypes.pyo +${PYSITELIB}/mypy/test/typefixture.py +${PYSITELIB}/mypy/test/typefixture.pyc +${PYSITELIB}/mypy/test/typefixture.pyo +${PYSITELIB}/mypy/test/update.py +${PYSITELIB}/mypy/test/update.pyc +${PYSITELIB}/mypy/test/update.pyo +${PYSITELIB}/mypy/test/visitors.py +${PYSITELIB}/mypy/test/visitors.pyc +${PYSITELIB}/mypy/test/visitors.pyo +${PYSITELIB}/mypy/traverser.py +${PYSITELIB}/mypy/traverser.pyc +${PYSITELIB}/mypy/traverser.pyo +${PYSITELIB}/mypy/treetransform.py +${PYSITELIB}/mypy/treetransform.pyc +${PYSITELIB}/mypy/treetransform.pyo +${PYSITELIB}/mypy/tvar_scope.py +${PYSITELIB}/mypy/tvar_scope.pyc +${PYSITELIB}/mypy/tvar_scope.pyo +${PYSITELIB}/mypy/type_visitor.py +${PYSITELIB}/mypy/type_visitor.pyc +${PYSITELIB}/mypy/type_visitor.pyo +${PYSITELIB}/mypy/typeanal.py +${PYSITELIB}/mypy/typeanal.pyc +${PYSITELIB}/mypy/typeanal.pyo +${PYSITELIB}/mypy/types.py +${PYSITELIB}/mypy/types.pyc +${PYSITELIB}/mypy/types.pyo +${PYSITELIB}/mypy/typeshed/stdlib/2/BaseHTTPServer.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/ConfigParser.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/Cookie.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/HTMLParser.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/Queue.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/SimpleHTTPServer.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/SocketServer.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/StringIO.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/UserDict.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/UserList.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/UserString.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/__builtin__.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/_ast.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/_collections.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/_functools.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/_hotshot.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/_io.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/_json.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/_md5.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/_sha.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/_sha256.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/_sha512.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/_socket.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/_sre.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/_struct.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/_symtable.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/_threading_local.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/_warnings.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/abc.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/ast.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/atexit.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/builtins.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/cPickle.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/cStringIO.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/collections.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/commands.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/compileall.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/cookielib.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/dircache.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/distutils/__init__.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/distutils/emxccompiler.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/dummy_thread.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/email/MIMEText.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/email/__init__.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/email/_parseaddr.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/email/base64mime.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/email/charset.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/email/encoders.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/email/feedparser.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/email/generator.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/email/header.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/email/iterators.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/email/message.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/email/mime/__init__.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/email/mime/application.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/email/mime/audio.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/email/mime/base.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/email/mime/image.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/email/mime/message.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/email/mime/multipart.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/email/mime/nonmultipart.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/email/mime/text.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/email/parser.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/email/quoprimime.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/email/utils.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/encodings/__init__.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/encodings/utf_8.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/exceptions.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/fcntl.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/fnmatch.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/functools.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/future_builtins.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/gc.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/getopt.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/getpass.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/gettext.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/glob.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/gzip.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/hashlib.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/heapq.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/htmlentitydefs.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/httplib.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/imp.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/importlib.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/inspect.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/io.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/itertools.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/json.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/macpath.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/markupbase.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/md5.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/mimetools.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/multiprocessing/__init__.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/multiprocessing/dummy/__init__.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/multiprocessing/dummy/connection.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/multiprocessing/pool.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/multiprocessing/process.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/multiprocessing/util.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/mutex.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/ntpath.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/nturl2path.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/os/__init__.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/os/path.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/os2emxpath.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/pipes.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/platform.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/popen2.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/posix.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/posixpath.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/pydoc.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/random.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/re.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/repr.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/resource.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/rfc822.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/robotparser.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/runpy.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/sets.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/sha.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/shelve.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/shlex.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/signal.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/smtplib.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/spwd.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/sre_constants.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/sre_parse.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/stat.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/string.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/stringold.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/strop.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/subprocess.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/symbol.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/sys.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/tempfile.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/textwrap.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/thread.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/toaiff.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/tokenize.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/types.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/typing.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/unittest.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/urllib.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/urllib2.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/urlparse.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/user.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/whichdb.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2/xmlrpclib.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/__future__.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/_bisect.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/_codecs.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/_csv.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/_heapq.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/_random.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/_weakref.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/_weakrefset.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/argparse.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/array.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/asynchat.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/asyncore.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/base64.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/binascii.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/binhex.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/bisect.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/bz2.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/cProfile.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/calendar.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/cgi.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/chunk.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/cmath.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/cmd.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/code.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/codecs.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/codeop.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/colorsys.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/contextlib.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/copy.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/crypt.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/csv.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/ctypes/__init__.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/ctypes/util.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/ctypes/wintypes.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/datetime.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/decimal.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/difflib.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/dis.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/__init__.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/archive_util.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/bcppcompiler.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/ccompiler.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/cmd.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/command/__init__.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/command/bdist.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/command/bdist_dumb.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/command/bdist_msi.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/command/bdist_packager.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/command/bdist_rpm.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/command/bdist_wininst.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/command/build.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/command/build_clib.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/command/build_ext.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/command/build_py.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/command/build_scripts.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/command/check.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/command/clean.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/command/config.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/command/install.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/command/install_data.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/command/install_headers.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/command/install_lib.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/command/install_scripts.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/command/register.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/command/sdist.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/core.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/cygwinccompiler.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/debug.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/dep_util.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/dir_util.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/dist.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/errors.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/extension.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/fancy_getopt.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/file_util.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/filelist.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/log.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/msvccompiler.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/spawn.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/sysconfig.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/text_file.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/unixccompiler.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/util.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/distutils/version.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/doctest.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/errno.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/filecmp.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/fileinput.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/formatter.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/fractions.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/ftplib.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/genericpath.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/grp.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/hmac.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/imaplib.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/imghdr.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/keyword.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/lib2to3/__init__.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/lib2to3/pgen2/__init__.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/lib2to3/pgen2/driver.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/lib2to3/pgen2/grammar.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/lib2to3/pgen2/literals.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/lib2to3/pgen2/parse.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/lib2to3/pgen2/pgen.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/lib2to3/pgen2/token.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/lib2to3/pgen2/tokenize.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/lib2to3/pygram.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/lib2to3/pytree.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/linecache.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/locale.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/logging/__init__.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/logging/config.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/logging/handlers.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/marshal.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/math.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/mimetypes.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/mmap.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/netrc.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/nis.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/numbers.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/opcode.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/operator.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/optparse.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/pdb.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/pickle.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/pickletools.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/pkgutil.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/plistlib.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/poplib.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/pprint.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/profile.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/pstats.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/pty.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/pwd.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/py_compile.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/pyclbr.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/pyexpat/__init__.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/pyexpat/errors.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/pyexpat/model.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/quopri.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/readline.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/rlcompleter.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/sched.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/select.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/shutil.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/site.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/smtpd.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/sndhdr.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/socket.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/sqlite3/__init__.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/sqlite3/dbapi2.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/sre_compile.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/ssl.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/stringprep.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/struct.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/sunau.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/symtable.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/sysconfig.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/syslog.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/tabnanny.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/tarfile.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/telnetlib.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/termios.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/threading.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/time.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/timeit.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/token.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/trace.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/traceback.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/tty.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/unicodedata.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/uu.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/uuid.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/warnings.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/wave.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/weakref.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/webbrowser.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/wsgiref/__init__.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/wsgiref/handlers.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/wsgiref/headers.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/wsgiref/simple_server.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/wsgiref/types.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/wsgiref/util.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/wsgiref/validate.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/xdrlib.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/xml/__init__.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/xml/etree/ElementInclude.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/xml/etree/ElementPath.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/xml/etree/ElementTree.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/xml/etree/__init__.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/xml/etree/cElementTree.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/xml/parsers/__init__.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/xml/parsers/expat/__init__.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/xml/parsers/expat/errors.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/xml/parsers/expat/model.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/xml/sax/__init__.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/xml/sax/handler.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/xml/sax/saxutils.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/xml/sax/xmlreader.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/zipfile.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/zipimport.pyi +${PYSITELIB}/mypy/typeshed/stdlib/2and3/zlib.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3.5/zipapp.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3.6/secrets.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3.7/contextvars.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3.7/dataclasses.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/_ast.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/_compression.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/_curses.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/_dummy_thread.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/_imp.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/_importlib_modulespec.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/_json.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/_markupbase.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/_operator.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/_posixsubprocess.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/_stat.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/_subprocess.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/_thread.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/_threading_local.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/_tracemalloc.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/_warnings.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/_winapi.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/abc.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/ast.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/asyncio/__init__.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/asyncio/coroutines.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/asyncio/events.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/asyncio/futures.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/asyncio/locks.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/asyncio/protocols.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/asyncio/queues.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/asyncio/runners.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/asyncio/streams.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/asyncio/subprocess.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/asyncio/tasks.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/asyncio/transports.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/atexit.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/builtins.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/collections/__init__.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/collections/abc.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/compileall.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/concurrent/__init__.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/concurrent/futures/__init__.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/concurrent/futures/_base.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/concurrent/futures/process.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/concurrent/futures/thread.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/configparser.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/curses/__init__.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/curses/ascii.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/curses/panel.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/curses/textpad.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/email/__init__.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/email/charset.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/email/contentmanager.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/email/encoders.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/email/errors.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/email/feedparser.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/email/generator.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/email/header.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/email/headerregistry.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/email/iterators.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/email/message.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/email/mime/__init__.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/email/mime/application.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/email/mime/audio.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/email/mime/base.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/email/mime/image.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/email/mime/message.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/email/mime/multipart.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/email/mime/nonmultipart.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/email/mime/text.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/email/parser.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/email/policy.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/email/utils.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/encodings/__init__.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/encodings/utf_8.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/enum.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/fcntl.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/fnmatch.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/functools.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/gc.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/getopt.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/getpass.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/gettext.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/glob.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/gzip.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/hashlib.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/heapq.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/html/__init__.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/html/entities.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/html/parser.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/http/__init__.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/http/client.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/http/cookiejar.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/http/cookies.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/http/server.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/imp.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/importlib/__init__.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/importlib/abc.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/importlib/machinery.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/importlib/resources.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/importlib/util.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/inspect.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/io.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/ipaddress.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/itertools.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/json/__init__.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/json/decoder.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/json/encoder.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/lzma.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/macpath.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/msvcrt.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/multiprocessing/__init__.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/multiprocessing/connection.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/multiprocessing/context.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/multiprocessing/dummy/__init__.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/multiprocessing/dummy/connection.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/multiprocessing/managers.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/multiprocessing/pool.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/multiprocessing/process.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/multiprocessing/queues.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/multiprocessing/synchronize.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/nntplib.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/ntpath.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/nturl2path.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/os/__init__.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/os/path.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/pathlib.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/pipes.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/platform.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/posix.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/posixpath.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/queue.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/random.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/re.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/reprlib.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/resource.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/runpy.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/selectors.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/shelve.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/shlex.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/signal.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/smtplib.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/socketserver.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/spwd.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/sre_constants.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/sre_parse.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/stat.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/statistics.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/string.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/subprocess.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/symbol.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/sys.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/tempfile.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/textwrap.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/tkinter/__init__.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/tkinter/commondialog.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/tkinter/constants.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/tkinter/dialog.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/tkinter/filedialog.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/tkinter/messagebox.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/tkinter/ttk.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/tokenize.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/tracemalloc.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/types.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/typing.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/unittest/__init__.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/unittest/mock.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/urllib/__init__.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/urllib/error.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/urllib/parse.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/urllib/request.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/urllib/response.pyi +${PYSITELIB}/mypy/typeshed/stdlib/3/urllib/robotparser.pyi +${PYSITELIB}/mypy/typeshed/tests/check_consistent.py +${PYSITELIB}/mypy/typeshed/tests/check_consistent.pyc +${PYSITELIB}/mypy/typeshed/tests/check_consistent.pyo +${PYSITELIB}/mypy/typeshed/tests/mypy_selftest.py +${PYSITELIB}/mypy/typeshed/tests/mypy_selftest.pyc +${PYSITELIB}/mypy/typeshed/tests/mypy_selftest.pyo +${PYSITELIB}/mypy/typeshed/tests/mypy_test.py +${PYSITELIB}/mypy/typeshed/tests/mypy_test.pyc +${PYSITELIB}/mypy/typeshed/tests/mypy_test.pyo +${PYSITELIB}/mypy/typeshed/tests/pytype_test.py +${PYSITELIB}/mypy/typeshed/tests/pytype_test.pyc +${PYSITELIB}/mypy/typeshed/tests/pytype_test.pyo +${PYSITELIB}/mypy/typeshed/third_party/2/OpenSSL/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/OpenSSL/crypto.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/concurrent/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/concurrent/futures/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/concurrent/futures/_base.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/concurrent/futures/process.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/concurrent/futures/thread.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/cryptography/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/cryptography/hazmat/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/cryptography/hazmat/primitives/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/cryptography/hazmat/primitives/asymmetric/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/cryptography/hazmat/primitives/asymmetric/dsa.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/cryptography/hazmat/primitives/asymmetric/rsa.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/cryptography/hazmat/primitives/serialization.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/enum.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/fb303/FacebookService.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/fb303/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/gflags.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/itsdangerous.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/kazoo/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/kazoo/client.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/kazoo/exceptions.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/kazoo/recipe/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/kazoo/recipe/watchers.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/pathlib2.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/pycurl.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/pymssql.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/redis/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/redis/client.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/redis/connection.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/redis/exceptions.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/redis/utils.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/routes/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/routes/mapper.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/routes/util.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/scribe/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/scribe/scribe.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/scribe/ttypes.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/six/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/six/moves/BaseHTTPServer.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/six/moves/SimpleHTTPServer.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/six/moves/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/six/moves/_dummy_thread.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/six/moves/_thread.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/six/moves/cPickle.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/six/moves/configparser.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/six/moves/email_mime_text.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/six/moves/html_entities.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/six/moves/html_parser.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/six/moves/http_client.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/six/moves/http_cookiejar.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/six/moves/http_cookies.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/six/moves/queue.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/six/moves/reprlib.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/six/moves/socketserver.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/six/moves/urllib/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/six/moves/urllib/error.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/six/moves/urllib/parse.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/six/moves/urllib/request.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/six/moves/urllib/response.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/six/moves/urllib/robotparser.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/six/moves/urllib_error.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/six/moves/urllib_parse.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/six/moves/urllib_request.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/six/moves/urllib_response.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/six/moves/urllib_robotparser.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/six/moves/xmlrpc_client.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/tornado/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/tornado/concurrent.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/tornado/gen.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/tornado/httpclient.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/tornado/httpserver.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/tornado/httputil.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/tornado/ioloop.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/tornado/locks.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/tornado/netutil.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/tornado/process.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/tornado/tcpserver.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/tornado/testing.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/tornado/util.pyi +${PYSITELIB}/mypy/typeshed/third_party/2/tornado/web.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Cipher/AES.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Cipher/ARC2.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Cipher/ARC4.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Cipher/Blowfish.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Cipher/CAST.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Cipher/DES.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Cipher/DES3.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Cipher/PKCS1_OAEP.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Cipher/PKCS1_v1_5.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Cipher/XOR.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Cipher/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Cipher/blockalgo.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Hash/HMAC.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Hash/MD2.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Hash/MD4.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Hash/MD5.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Hash/RIPEMD.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Hash/SHA.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Hash/SHA224.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Hash/SHA256.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Hash/SHA384.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Hash/SHA512.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Hash/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Hash/hashalgo.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Protocol/AllOrNothing.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Protocol/Chaffing.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Protocol/KDF.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Protocol/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/PublicKey/DSA.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/PublicKey/ElGamal.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/PublicKey/RSA.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/PublicKey/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/PublicKey/pubkey.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Random/Fortuna/FortunaAccumulator.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Random/Fortuna/FortunaGenerator.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Random/Fortuna/SHAd256.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Random/Fortuna/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Random/OSRNG/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Random/OSRNG/fallback.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Random/OSRNG/posix.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Random/OSRNG/rng_base.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Random/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Random/random.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Signature/PKCS1_PSS.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Signature/PKCS1_v1_5.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Signature/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Util/Counter.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Util/RFC1751.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Util/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Util/asn1.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Util/number.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Util/randpool.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/Util/strxor.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/Crypto/pct_warnings.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/atomicwrites/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/attr/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/attr/converters.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/attr/exceptions.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/attr/filters.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/attr/validators.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/backports/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/backports/ssl_match_hostname.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/backports_abc.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/boto/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/boto/auth.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/boto/auth_handler.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/boto/compat.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/boto/connection.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/boto/ec2/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/boto/elb/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/boto/exception.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/boto/kms/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/boto/kms/exceptions.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/boto/kms/layer1.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/boto/plugin.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/boto/regioninfo.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/boto/s3/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/boto/s3/acl.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/boto/s3/bucket.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/boto/s3/bucketlistresultset.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/boto/s3/bucketlogging.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/boto/s3/connection.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/boto/s3/cors.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/boto/s3/deletemarker.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/boto/s3/key.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/boto/s3/keyfile.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/boto/s3/lifecycle.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/boto/s3/multidelete.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/boto/s3/multipart.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/boto/s3/prefix.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/boto/s3/tagging.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/boto/s3/user.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/boto/s3/website.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/boto/utils.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/certifi.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/characteristic/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/click/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/click/_termui_impl.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/click/core.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/click/decorators.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/click/exceptions.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/click/formatting.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/click/globals.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/click/parser.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/click/termui.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/click/testing.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/click/types.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/click/utils.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/croniter.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/dateutil/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/dateutil/_common.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/dateutil/parser.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/dateutil/relativedelta.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/dateutil/rrule.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/dateutil/tz/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/dateutil/tz/_common.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/dateutil/tz/tz.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/emoji.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/first.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/any_pb2.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/any_test_pb2.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/api_pb2.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/compiler/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/compiler/plugin_pb2.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/descriptor.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/descriptor_pb2.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/descriptor_pool.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/duration_pb2.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/empty_pb2.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/field_mask_pb2.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/internal/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/internal/containers.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/internal/decoder.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/internal/encoder.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/internal/enum_type_wrapper.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/internal/message_listener.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/internal/well_known_types.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/internal/wire_format.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/json_format.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/map_proto2_unittest_pb2.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/map_unittest_pb2.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/message.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/message_factory.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/reflection.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/service.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/source_context_pb2.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/struct_pb2.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/symbol_database.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/test_messages_proto2_pb2.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/test_messages_proto3_pb2.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/timestamp_pb2.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/type_pb2.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/unittest_arena_pb2.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/unittest_custom_options_pb2.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/unittest_import_pb2.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/unittest_import_public_pb2.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/unittest_mset_pb2.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/unittest_mset_wire_format_pb2.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/unittest_no_arena_import_pb2.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/unittest_no_arena_pb2.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/unittest_no_generic_services_pb2.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/unittest_pb2.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/unittest_proto3_arena_pb2.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/util/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/util/json_format_proto3_pb2.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/google/protobuf/wrappers_pb2.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/jinja2/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/jinja2/_compat.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/jinja2/_stringdefs.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/jinja2/bccache.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/jinja2/compiler.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/jinja2/constants.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/jinja2/debug.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/jinja2/defaults.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/jinja2/environment.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/jinja2/exceptions.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/jinja2/ext.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/jinja2/filters.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/jinja2/lexer.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/jinja2/loaders.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/jinja2/meta.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/jinja2/nodes.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/jinja2/optimizer.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/jinja2/parser.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/jinja2/runtime.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/jinja2/sandbox.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/jinja2/tests.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/jinja2/utils.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/jinja2/visitor.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/markupsafe/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/markupsafe/_compat.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/markupsafe/_constants.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/markupsafe/_native.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/markupsafe/_speedups.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/mock.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/mypy_extensions.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/pymysql/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/pymysql/charset.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/pymysql/connections.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/pymysql/constants/CLIENT.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/pymysql/constants/COMMAND.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/pymysql/constants/ER.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/pymysql/constants/FIELD_TYPE.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/pymysql/constants/FLAG.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/pymysql/constants/SERVER_STATUS.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/pymysql/constants/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/pymysql/converters.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/pymysql/cursors.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/pymysql/err.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/pymysql/times.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/pymysql/util.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/pynamodb/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/pynamodb/attributes.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/pynamodb/connection/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/pynamodb/connection/base.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/pynamodb/connection/table.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/pynamodb/connection/util.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/pynamodb/constants.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/pynamodb/exceptions.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/pynamodb/indexes.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/pynamodb/models.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/pynamodb/settings.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/pynamodb/throttle.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/pynamodb/types.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/pytz/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/requests/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/requests/adapters.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/requests/api.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/requests/auth.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/requests/compat.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/requests/cookies.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/requests/exceptions.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/requests/hooks.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/requests/models.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/requests/packages/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/requests/packages/urllib3/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/requests/packages/urllib3/_collections.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/requests/packages/urllib3/connection.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/requests/packages/urllib3/connectionpool.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/requests/packages/urllib3/contrib/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/requests/packages/urllib3/exceptions.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/requests/packages/urllib3/fields.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/requests/packages/urllib3/filepost.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/requests/packages/urllib3/packages/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/requests/packages/urllib3/packages/ssl_match_hostname/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/requests/packages/urllib3/poolmanager.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/requests/packages/urllib3/request.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/requests/packages/urllib3/response.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/requests/packages/urllib3/util/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/requests/packages/urllib3/util/connection.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/requests/packages/urllib3/util/request.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/requests/packages/urllib3/util/response.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/requests/packages/urllib3/util/retry.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/requests/packages/urllib3/util/ssl_.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/requests/packages/urllib3/util/timeout.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/requests/packages/urllib3/util/url.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/requests/sessions.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/requests/status_codes.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/requests/structures.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/requests/utils.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/simplejson/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/simplejson/decoder.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/simplejson/encoder.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/simplejson/scanner.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/singledispatch.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/termcolor.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/toml.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/typing_extensions.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/ujson.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/werkzeug/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/werkzeug/_compat.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/werkzeug/_internal.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/werkzeug/_reloader.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/werkzeug/contrib/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/werkzeug/contrib/atom.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/werkzeug/contrib/cache.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/werkzeug/contrib/fixers.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/werkzeug/contrib/iterio.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/werkzeug/contrib/jsrouting.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/werkzeug/contrib/limiter.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/werkzeug/contrib/lint.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/werkzeug/contrib/profiler.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/werkzeug/contrib/securecookie.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/werkzeug/contrib/sessions.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/werkzeug/contrib/testtools.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/werkzeug/contrib/wrappers.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/werkzeug/datastructures.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/werkzeug/debug/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/werkzeug/debug/console.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/werkzeug/debug/repr.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/werkzeug/debug/tbtools.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/werkzeug/exceptions.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/werkzeug/filesystem.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/werkzeug/formparser.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/werkzeug/http.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/werkzeug/local.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/werkzeug/posixemulation.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/werkzeug/routing.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/werkzeug/script.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/werkzeug/security.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/werkzeug/serving.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/werkzeug/test.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/werkzeug/testapp.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/werkzeug/urls.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/werkzeug/useragents.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/werkzeug/utils.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/werkzeug/wrappers.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/werkzeug/wsgi.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/yaml/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/yaml/composer.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/yaml/constructor.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/yaml/dumper.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/yaml/emitter.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/yaml/error.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/yaml/events.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/yaml/loader.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/yaml/nodes.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/yaml/parser.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/yaml/reader.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/yaml/representer.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/yaml/resolver.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/yaml/scanner.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/yaml/serializer.pyi +${PYSITELIB}/mypy/typeshed/third_party/2and3/yaml/tokens.pyi +${PYSITELIB}/mypy/typeshed/third_party/3.5/contextvars.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/dataclasses.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/docutils/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/docutils/examples.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/docutils/nodes.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/docutils/parsers/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/docutils/parsers/rst/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/docutils/parsers/rst/nodes.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/docutils/parsers/rst/roles.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/docutils/parsers/rst/states.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/enum.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/itsdangerous.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/jwt/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/jwt/algorithms.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/jwt/contrib/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/jwt/contrib/algorithms/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/jwt/contrib/algorithms/py_ecdsa.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/jwt/contrib/algorithms/pycrypto.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/pkg_resources/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/pkg_resources/py31compat.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/six/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/six/moves/BaseHTTPServer.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/six/moves/CGIHTTPServer.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/six/moves/SimpleHTTPServer.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/six/moves/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/six/moves/_dummy_thread.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/six/moves/_thread.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/six/moves/builtins.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/six/moves/cPickle.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/six/moves/configparser.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/six/moves/email_mime_base.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/six/moves/email_mime_multipart.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/six/moves/email_mime_nonmultipart.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/six/moves/email_mime_text.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/six/moves/html_entities.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/six/moves/html_parser.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/six/moves/http_client.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/six/moves/http_cookiejar.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/six/moves/http_cookies.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/six/moves/queue.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/six/moves/reprlib.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/six/moves/socketserver.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/six/moves/tkinter.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/six/moves/tkinter_commondialog.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/six/moves/tkinter_constants.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/six/moves/tkinter_dialog.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/six/moves/tkinter_filedialog.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/six/moves/tkinter_tkfiledialog.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/six/moves/tkinter_ttk.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/six/moves/urllib/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/six/moves/urllib/error.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/six/moves/urllib/parse.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/six/moves/urllib/request.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/six/moves/urllib/response.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/six/moves/urllib/robotparser.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/six/moves/urllib_error.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/six/moves/urllib_parse.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/six/moves/urllib_request.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/six/moves/urllib_response.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/six/moves/urllib_robotparser.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/typed_ast/__init__.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/typed_ast/ast27.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/typed_ast/ast3.pyi +${PYSITELIB}/mypy/typeshed/third_party/3/typed_ast/conversions.pyi +${PYSITELIB}/mypy/typestate.py +${PYSITELIB}/mypy/typestate.pyc +${PYSITELIB}/mypy/typestate.pyo +${PYSITELIB}/mypy/typevars.py +${PYSITELIB}/mypy/typevars.pyc +${PYSITELIB}/mypy/typevars.pyo +${PYSITELIB}/mypy/util.py +${PYSITELIB}/mypy/util.pyc +${PYSITELIB}/mypy/util.pyo +${PYSITELIB}/mypy/version.py +${PYSITELIB}/mypy/version.pyc +${PYSITELIB}/mypy/version.pyo +${PYSITELIB}/mypy/visitor.py +${PYSITELIB}/mypy/visitor.pyc +${PYSITELIB}/mypy/visitor.pyo +${PYSITELIB}/mypy/xml/mypy-html.css +${PYSITELIB}/mypy/xml/mypy-html.xslt +${PYSITELIB}/mypy/xml/mypy-txt.xslt +${PYSITELIB}/mypy/xml/mypy.xsd Index: pkgsrc/lang/py-mypy/distinfo diff -u /dev/null pkgsrc/lang/py-mypy/distinfo:1.1 --- /dev/null Wed Nov 28 08:15:31 2018 +++ pkgsrc/lang/py-mypy/distinfo Wed Nov 28 08:15:31 2018 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2018/11/28 08:15:31 adam Exp $ + +SHA1 (mypy-0.641.tar.gz) = c3ba9a7168bd05622a4144cc25c1ebca45dbb98a +RMD160 (mypy-0.641.tar.gz) = 0d345e6446cbfe409180775c5bceeafff96a9b3e +SHA512 (mypy-0.641.tar.gz) = 0015dcc6c3dca795460c7fa75eb246540def523783d1ef78dddb633e5856925b344a8cac5ca31e70ccf98af22dd23e7256d02c5d822ad898d4c2b8701f7c3f70 +Size (mypy-0.641.tar.gz) = 1607937 bytes --_----------=_154339293183030--