Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

mypy-0.670-lp152.2.2 RPM for noarch

From OpenSuSE Leap 15.2 for noarch

Name: mypy Distribution: openSUSE Leap 15.2
Version: 0.670 Vendor: openSUSE
Release: lp152.2.2 Build date: Fri Sep 20 23:00:01 2019
Group: Development/Languages/Python Build host: lamb09
Size: 14074350 Source RPM: mypy-0.670-lp152.2.2.src.rpm
Packager: https://bugs.opensuse.org
Url: http://www.mypy-lang.org/
Summary: Optional static typing for Python
Mypy is an optional static type checker for Python that aims to
combine the benefits of both dynamic (or "duck") typing as well as
static typing.

Mypy type checks standard Python programs. It can catch many
programming errors by analyzing programs without having to run them.
There is basically no runtime overhead when run using any Python VM.
Mypy's type system features type inference, gradual typing, generics
and union types.

Provides

Requires

License

MIT

Changelog

* Thu Feb 14 2019 Matej Cepl <mcepl@suse.com>
  - Update to 0.670: too many changes to list here (and there is no
    perfect changelog), but all information is on
    http://www.mypy-lang.org/
  - Remove already included patches
    0001-Look-for-typeshed-in-usr-share.patch and
    0002-Canonicalize-bin_dir-when-looking-for-data_dir.patch
* Tue Aug 28 2018 mimi.vx@gmail.com
  - desinglespec - is app and only for python3
  - add RH patchset:
    0001-Look-for-typeshed-in-usr-share.patch
    0002-Canonicalize-bin_dir-when-looking-for-data_dir.patch
    0003-Pass-executable-path-into-main-when-running-installe.patch
* Mon Aug 27 2018 mimi.vx@gmail.com
  - update to 0.620
  - fix install deps
    * support for dataclasses
    * better support for PEP 561
    * adds support for dmypy run and a host of other small
    * many other imporvents
* Mon Jul 02 2018 tchvatal@suse.com
  - Drop dependency over devel python package, not needed
  - Do not skip build on < 3.4 python, we do not ship that anywhere
    (last seen on 13.1)
* Sat Apr 14 2018 sebix+novell.com@sebix.at
  - update to version 0.590:
    * New Features
    * experimental support for PEP 561
    * Incremental mode is on by default
    * Flags for always true/false
    * Add a per-module follow_imports_for_stubs options
    * Notable Bugs Fixed
    * Fix error message when assigning to read-only property (PR 4863 by Michael Lee, fixes issue 4756)
    * Respect --follow-imports=silent in --warn-unused-ignores (PR 4857, fixes issue 3949)
    * Don't produce spurious “unused type ignore” messages in incremental mode (PR 4841, fixes issue 2960)
    * Fix operator access on Type[...] (PR 4823, fixes issue 4789)
    * Remove incorrect override check on overloaded methods (PR 4810 by Michael Lee, fixes issue 4565)
    * Handle NotImplemented returned from __ne__ (PR 4770 by Peter Ludemann, fixes issue 4767)
    * Options in mypy.ini should be spelled with underscores, not hyphens (PR 4754 by Emil Hessman, fixes issue 4753)
    * Documentation Improvements
    * Add coroutines to cheat sheet (PR 4677 by Rob Day)
    * Add None return/strict-optional to common issues (PR 4594 by Viet Hung Nguyen)
    * Mention that SupportsInt and friends don't support arithmetic (PR 4781, fixes issue 4758)
    * Stubgen Improvements
    * Emit Any type annotations for unannotated arguments (PR 4774 by Matt Gilson, fixes issue 4766)
    * Fix stubgen --recursive to only generate stubs for requested submodules. (PR 4845 by Matt Gilson, fixes issue 4844)
    * Properly format Callables (PR 4650 by Evan Hubinger, fixes issue 4640)
* Fri Mar 23 2018 sebix+novell.com@sebix.at
  - update to version 0.580:
    * Type check class decorators
    * Plugin for typechecking classes generated by attrs (Documentation)
    * Hooks into the semantic analyzer for plugins (PR 4328, PR 4397)
    * bugfixes and improved error messages
* Fri Mar 02 2018 sebix+novell.com@sebix.at
  - update to version 0.570:
    * Add support for attrs_package
* Sat Dec 16 2017 sebix+novell.com@sebix.at
  - update to version 0.560:
    * Iterable and Friends Are Now Protocols
    * Improved Error Messages
  - include compiled docs in package
* Sat Nov 11 2017 sebix+novell.com@sebix.at
  - fix build for distributions with python 3.4
* Fri Nov 10 2017 sebix+novell.com@sebix.at
  - update to 0.550:
    * Running mypy now requires Python 3.4 or higher.
    However Python 3.3 is still valid for the target
    of the analysis (i.e. the `--python-version` flag).
    * Split `--disallow-any` flag into `separate boolean flags <disallow-any>`.
    * The `--old-html-report` flag was removed.
* Sat Oct 21 2017 sebix+novell.com@sebix.at
  - update to 0.540
    * Switch to More Rapid Releases
    new mypy version roughly every 2-4 weeks
    * New Features
    * Allow assignments to multiple targets from union types (Ivan Levkivskyi, PR 4067)
    * Allow definitions of subscripted type aliases such as Item = Tuple[int, str] within functions (Ivan Levkivskyi, PR 4000)
    * Narrow type of optional left operand of in operator if the collection items aren’t optional (Ivan Levkivskyi, PR 4072)
    * Generate an error if <unknown> type would be inferred for a variable (PR 4112)
    * Notable Bugs Fixed
    * Fix errors not being reported for some modules with incremental mode by deleting cache file for a module if errors are found (Ivan Levkivskyi, PR 4045)
    * Fix incremental mode crash related to Type[...] types (Ivan Levkivskyi, PR 4038)
    * Fix crash related to tuple types (Ivan Levkivskyi, PR 4051)
    * Fix incorrect errors about __getattr__ methods (Ivan Levkivskyi, PR 4073)
    * Fixes to non-method attributes with callable types (Elazar Gershuni, PR 4016)
    * Fix function overloading based on Type[...] types (Ivan Levkivskyi, PR 4037)
    * Fix processing invalid overloaded function definitions (Elazar Gershuni, PR 4064)
    * Fix handling of disallow_any/disallow_untyped_defs combination in mypy config file (Jelle Zijlstra, PR 4076)
* Wed Aug 09 2017 sebix+novell.com@sebix.at
  - fix shebang removal
* Thu Jul 27 2017 sebix+novell.com@sebix.at
  - update to 0.521
    * Mypy Bugs Fixed
    * Fix crash on name collision for self attributes (Ivan Levkivskyi, PRs 3700 and 3719)
    * Fix bug in cache updates and improve cache logging (PR 3708)
    * Fix per-file strict Optional interaction with default-None args (PR 3686)
    * Fix crash in --quick mode when aliases are re-exported (Ivan Levkivskyi, PR 3740)
    * Fix crash on incompatible redefinition in named tuple (Ivan Levkivskyi, PR 3760)
    * Typeshed Bugs Fixed
    * Fix regressions in csv.DictReader (Thomas Grainger, PRs 1475 and 1478)
* Sat Jul 15 2017 sebix+novell.com@sebix.at
  - upgrade to 0.520
    * Add :ref:`fine-grained control of Any types <disallow-any>`.
    * Add :ref:`typeddict`.
    * Other updates to :ref:`command-line`:
    * Add --no-implicit-optional.
    * Add --shadow-file.
    * Add --no-incremental.
* Thu Jul 06 2017 sebix+novell.com@sebix.at
  - correct shebangs of typeshed libs
  - fix build for older versions
* Thu Jul 06 2017 jengelh@inai.de
  - Enhance description by some more text from the webpage.
* Tue Jun 27 2017 sebix+novell.com@sebix.at
  - use python singlespec approach marking as uncompatible with python2
* Mon May 08 2017 sebix+novell.com@sebix.at
  - first package

Files

/usr/bin/dmypy
/usr/bin/mypy
/usr/bin/stubgen
/usr/lib/python3.6/site-packages/mypy
/usr/lib/python3.6/site-packages/mypy-0.670-py3.6.egg-info
/usr/lib/python3.6/site-packages/mypy-0.670-py3.6.egg-info/PKG-INFO
/usr/lib/python3.6/site-packages/mypy-0.670-py3.6.egg-info/SOURCES.txt
/usr/lib/python3.6/site-packages/mypy-0.670-py3.6.egg-info/dependency_links.txt
/usr/lib/python3.6/site-packages/mypy-0.670-py3.6.egg-info/entry_points.txt
/usr/lib/python3.6/site-packages/mypy-0.670-py3.6.egg-info/requires.txt
/usr/lib/python3.6/site-packages/mypy-0.670-py3.6.egg-info/top_level.txt
/usr/lib/python3.6/site-packages/mypy/__init__.py
/usr/lib/python3.6/site-packages/mypy/__main__.py
/usr/lib/python3.6/site-packages/mypy/__pycache__
/usr/lib/python3.6/site-packages/mypy/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/__main__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/__main__.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/api.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/api.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/applytype.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/applytype.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/argmap.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/argmap.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/binder.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/binder.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/bogus_type.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/bogus_type.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/build.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/build.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/checker.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/checker.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/checkexpr.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/checkexpr.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/checkmember.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/checkmember.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/checkstrformat.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/checkstrformat.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/constraints.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/constraints.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/defaults.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/defaults.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/dmypy.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/dmypy.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/dmypy_os.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/dmypy_os.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/dmypy_server.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/dmypy_server.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/dmypy_util.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/dmypy_util.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/erasetype.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/erasetype.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/errors.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/errors.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/expandtype.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/expandtype.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/exprtotype.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/exprtotype.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/fastparse.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/fastparse.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/fastparse2.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/fastparse2.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/find_sources.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/find_sources.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/fixup.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/fixup.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/fscache.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/fscache.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/fswatcher.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/fswatcher.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/gclogger.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/gclogger.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/git.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/git.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/indirection.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/indirection.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/infer.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/infer.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/interpreted_plugin.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/interpreted_plugin.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/ipc.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/ipc.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/join.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/join.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/literals.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/literals.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/lookup.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/lookup.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/main.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/main.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/maptype.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/maptype.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/meet.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/meet.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/memprofile.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/memprofile.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/message_registry.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/message_registry.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/messages.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/messages.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/metastore.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/metastore.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/modulefinder.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/modulefinder.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/moduleinfo.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/moduleinfo.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/mro.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/mro.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/mypyc_hacks.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/mypyc_hacks.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/nodes.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/nodes.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/options.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/options.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/parse.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/parse.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/plugin.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/plugin.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/reachability.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/reachability.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/renaming.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/renaming.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/report.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/report.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/sametypes.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/sametypes.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/scope.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/scope.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/semanal.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/semanal.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/semanal_enum.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/semanal_enum.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/semanal_namedtuple.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/semanal_namedtuple.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/semanal_newtype.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/semanal_newtype.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/semanal_pass1.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/semanal_pass1.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/semanal_pass3.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/semanal_pass3.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/semanal_shared.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/semanal_shared.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/semanal_typeddict.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/semanal_typeddict.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/sharedparse.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/sharedparse.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/sitepkgs.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/sitepkgs.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/solve.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/solve.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/state.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/state.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/stats.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/stats.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/strconv.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/strconv.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/stubdoc.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/stubdoc.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/stubgen.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/stubgen.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/stubgenc.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/stubgenc.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/stubutil.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/stubutil.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/subtypes.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/subtypes.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/traverser.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/traverser.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/treetransform.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/treetransform.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/tvar_scope.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/tvar_scope.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/type_visitor.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/type_visitor.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/typeanal.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/typeanal.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/types.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/types.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/typestate.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/typestate.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/typevars.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/typevars.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/util.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/util.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/version.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/version.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/visitor.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/__pycache__/visitor.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/api.py
/usr/lib/python3.6/site-packages/mypy/applytype.py
/usr/lib/python3.6/site-packages/mypy/argmap.py
/usr/lib/python3.6/site-packages/mypy/binder.py
/usr/lib/python3.6/site-packages/mypy/bogus_type.py
/usr/lib/python3.6/site-packages/mypy/build.py
/usr/lib/python3.6/site-packages/mypy/checker.py
/usr/lib/python3.6/site-packages/mypy/checkexpr.py
/usr/lib/python3.6/site-packages/mypy/checkmember.py
/usr/lib/python3.6/site-packages/mypy/checkstrformat.py
/usr/lib/python3.6/site-packages/mypy/constraints.py
/usr/lib/python3.6/site-packages/mypy/defaults.py
/usr/lib/python3.6/site-packages/mypy/dmypy.py
/usr/lib/python3.6/site-packages/mypy/dmypy_os.py
/usr/lib/python3.6/site-packages/mypy/dmypy_server.py
/usr/lib/python3.6/site-packages/mypy/dmypy_util.py
/usr/lib/python3.6/site-packages/mypy/erasetype.py
/usr/lib/python3.6/site-packages/mypy/errors.py
/usr/lib/python3.6/site-packages/mypy/expandtype.py
/usr/lib/python3.6/site-packages/mypy/exprtotype.py
/usr/lib/python3.6/site-packages/mypy/fastparse.py
/usr/lib/python3.6/site-packages/mypy/fastparse2.py
/usr/lib/python3.6/site-packages/mypy/find_sources.py
/usr/lib/python3.6/site-packages/mypy/fixup.py
/usr/lib/python3.6/site-packages/mypy/fscache.py
/usr/lib/python3.6/site-packages/mypy/fswatcher.py
/usr/lib/python3.6/site-packages/mypy/gclogger.py
/usr/lib/python3.6/site-packages/mypy/git.py
/usr/lib/python3.6/site-packages/mypy/indirection.py
/usr/lib/python3.6/site-packages/mypy/infer.py
/usr/lib/python3.6/site-packages/mypy/interpreted_plugin.py
/usr/lib/python3.6/site-packages/mypy/ipc.py
/usr/lib/python3.6/site-packages/mypy/join.py
/usr/lib/python3.6/site-packages/mypy/literals.py
/usr/lib/python3.6/site-packages/mypy/lookup.py
/usr/lib/python3.6/site-packages/mypy/main.py
/usr/lib/python3.6/site-packages/mypy/maptype.py
/usr/lib/python3.6/site-packages/mypy/meet.py
/usr/lib/python3.6/site-packages/mypy/memprofile.py
/usr/lib/python3.6/site-packages/mypy/message_registry.py
/usr/lib/python3.6/site-packages/mypy/messages.py
/usr/lib/python3.6/site-packages/mypy/metastore.py
/usr/lib/python3.6/site-packages/mypy/modulefinder.py
/usr/lib/python3.6/site-packages/mypy/moduleinfo.py
/usr/lib/python3.6/site-packages/mypy/mro.py
/usr/lib/python3.6/site-packages/mypy/mypyc_hacks.py
/usr/lib/python3.6/site-packages/mypy/newsemanal
/usr/lib/python3.6/site-packages/mypy/newsemanal/__init__.py
/usr/lib/python3.6/site-packages/mypy/newsemanal/__pycache__
/usr/lib/python3.6/site-packages/mypy/newsemanal/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/newsemanal/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/newsemanal/__pycache__/semanal.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/newsemanal/__pycache__/semanal.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/newsemanal/__pycache__/semanal_enum.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/newsemanal/__pycache__/semanal_enum.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/newsemanal/__pycache__/semanal_main.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/newsemanal/__pycache__/semanal_main.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/newsemanal/__pycache__/semanal_namedtuple.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/newsemanal/__pycache__/semanal_namedtuple.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/newsemanal/__pycache__/semanal_newtype.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/newsemanal/__pycache__/semanal_newtype.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/newsemanal/__pycache__/semanal_pass1.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/newsemanal/__pycache__/semanal_pass1.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/newsemanal/__pycache__/semanal_pass3.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/newsemanal/__pycache__/semanal_pass3.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/newsemanal/__pycache__/semanal_shared.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/newsemanal/__pycache__/semanal_shared.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/newsemanal/__pycache__/semanal_typeddict.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/newsemanal/__pycache__/semanal_typeddict.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/newsemanal/__pycache__/typeanal.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/newsemanal/__pycache__/typeanal.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/newsemanal/semanal.py
/usr/lib/python3.6/site-packages/mypy/newsemanal/semanal_enum.py
/usr/lib/python3.6/site-packages/mypy/newsemanal/semanal_main.py
/usr/lib/python3.6/site-packages/mypy/newsemanal/semanal_namedtuple.py
/usr/lib/python3.6/site-packages/mypy/newsemanal/semanal_newtype.py
/usr/lib/python3.6/site-packages/mypy/newsemanal/semanal_pass1.py
/usr/lib/python3.6/site-packages/mypy/newsemanal/semanal_pass3.py
/usr/lib/python3.6/site-packages/mypy/newsemanal/semanal_shared.py
/usr/lib/python3.6/site-packages/mypy/newsemanal/semanal_typeddict.py
/usr/lib/python3.6/site-packages/mypy/newsemanal/typeanal.py
/usr/lib/python3.6/site-packages/mypy/nodes.py
/usr/lib/python3.6/site-packages/mypy/options.py
/usr/lib/python3.6/site-packages/mypy/parse.py
/usr/lib/python3.6/site-packages/mypy/plugin.py
/usr/lib/python3.6/site-packages/mypy/plugins
/usr/lib/python3.6/site-packages/mypy/plugins/__init__.py
/usr/lib/python3.6/site-packages/mypy/plugins/__pycache__
/usr/lib/python3.6/site-packages/mypy/plugins/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/plugins/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/plugins/__pycache__/attrs.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/plugins/__pycache__/attrs.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/plugins/__pycache__/common.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/plugins/__pycache__/common.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/plugins/__pycache__/ctypes.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/plugins/__pycache__/ctypes.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/plugins/__pycache__/dataclasses.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/plugins/__pycache__/dataclasses.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/plugins/__pycache__/default.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/plugins/__pycache__/default.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/plugins/attrs.py
/usr/lib/python3.6/site-packages/mypy/plugins/common.py
/usr/lib/python3.6/site-packages/mypy/plugins/ctypes.py
/usr/lib/python3.6/site-packages/mypy/plugins/dataclasses.py
/usr/lib/python3.6/site-packages/mypy/plugins/default.py
/usr/lib/python3.6/site-packages/mypy/reachability.py
/usr/lib/python3.6/site-packages/mypy/renaming.py
/usr/lib/python3.6/site-packages/mypy/report.py
/usr/lib/python3.6/site-packages/mypy/sametypes.py
/usr/lib/python3.6/site-packages/mypy/scope.py
/usr/lib/python3.6/site-packages/mypy/semanal.py
/usr/lib/python3.6/site-packages/mypy/semanal_enum.py
/usr/lib/python3.6/site-packages/mypy/semanal_namedtuple.py
/usr/lib/python3.6/site-packages/mypy/semanal_newtype.py
/usr/lib/python3.6/site-packages/mypy/semanal_pass1.py
/usr/lib/python3.6/site-packages/mypy/semanal_pass3.py
/usr/lib/python3.6/site-packages/mypy/semanal_shared.py
/usr/lib/python3.6/site-packages/mypy/semanal_typeddict.py
/usr/lib/python3.6/site-packages/mypy/server
/usr/lib/python3.6/site-packages/mypy/server/__init__.py
/usr/lib/python3.6/site-packages/mypy/server/__pycache__
/usr/lib/python3.6/site-packages/mypy/server/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/server/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/server/__pycache__/astdiff.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/server/__pycache__/astdiff.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/server/__pycache__/astmerge.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/server/__pycache__/astmerge.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/server/__pycache__/aststrip.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/server/__pycache__/aststrip.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/server/__pycache__/deps.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/server/__pycache__/deps.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/server/__pycache__/mergecheck.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/server/__pycache__/mergecheck.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/server/__pycache__/objgraph.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/server/__pycache__/objgraph.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/server/__pycache__/subexpr.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/server/__pycache__/subexpr.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/server/__pycache__/target.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/server/__pycache__/target.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/server/__pycache__/trigger.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/server/__pycache__/trigger.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/server/__pycache__/update.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/server/__pycache__/update.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/server/astdiff.py
/usr/lib/python3.6/site-packages/mypy/server/astmerge.py
/usr/lib/python3.6/site-packages/mypy/server/aststrip.py
/usr/lib/python3.6/site-packages/mypy/server/deps.py
/usr/lib/python3.6/site-packages/mypy/server/mergecheck.py
/usr/lib/python3.6/site-packages/mypy/server/objgraph.py
/usr/lib/python3.6/site-packages/mypy/server/subexpr.py
/usr/lib/python3.6/site-packages/mypy/server/target.py
/usr/lib/python3.6/site-packages/mypy/server/trigger.py
/usr/lib/python3.6/site-packages/mypy/server/update.py
/usr/lib/python3.6/site-packages/mypy/sharedparse.py
/usr/lib/python3.6/site-packages/mypy/sitepkgs.py
/usr/lib/python3.6/site-packages/mypy/solve.py
/usr/lib/python3.6/site-packages/mypy/state.py
/usr/lib/python3.6/site-packages/mypy/stats.py
/usr/lib/python3.6/site-packages/mypy/strconv.py
/usr/lib/python3.6/site-packages/mypy/stubdoc.py
/usr/lib/python3.6/site-packages/mypy/stubgen.py
/usr/lib/python3.6/site-packages/mypy/stubgenc.py
/usr/lib/python3.6/site-packages/mypy/stubutil.py
/usr/lib/python3.6/site-packages/mypy/subtypes.py
/usr/lib/python3.6/site-packages/mypy/test
/usr/lib/python3.6/site-packages/mypy/test/__init__.py
/usr/lib/python3.6/site-packages/mypy/test/__pycache__
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/collect.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/collect.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/config.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/config.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/data.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/data.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/helpers.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/helpers.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testargs.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testargs.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testcheck.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testcheck.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testcmdline.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testcmdline.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testdaemon.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testdaemon.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testdeps.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testdeps.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testdiff.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testdiff.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testerrorstream.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testerrorstream.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testfinegrained.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testfinegrained.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testfinegrainedcache.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testfinegrainedcache.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testgraph.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testgraph.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testinfer.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testinfer.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testipc.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testipc.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testmerge.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testmerge.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testmoduleinfo.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testmoduleinfo.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testparse.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testparse.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testpep561.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testpep561.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testpythoneval.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testpythoneval.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testreports.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testreports.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testsamples.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testsamples.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testsemanal.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testsemanal.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testsolve.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testsolve.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/teststubgen.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/teststubgen.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testsubtypes.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testsubtypes.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testtransform.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testtransform.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testtypegen.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testtypegen.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testtypes.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/testtypes.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/typefixture.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/typefixture.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/update.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/update.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/visitors.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/test/__pycache__/visitors.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/test/collect.py
/usr/lib/python3.6/site-packages/mypy/test/config.py
/usr/lib/python3.6/site-packages/mypy/test/data.py
/usr/lib/python3.6/site-packages/mypy/test/helpers.py
/usr/lib/python3.6/site-packages/mypy/test/testargs.py
/usr/lib/python3.6/site-packages/mypy/test/testcheck.py
/usr/lib/python3.6/site-packages/mypy/test/testcmdline.py
/usr/lib/python3.6/site-packages/mypy/test/testdaemon.py
/usr/lib/python3.6/site-packages/mypy/test/testdeps.py
/usr/lib/python3.6/site-packages/mypy/test/testdiff.py
/usr/lib/python3.6/site-packages/mypy/test/testerrorstream.py
/usr/lib/python3.6/site-packages/mypy/test/testfinegrained.py
/usr/lib/python3.6/site-packages/mypy/test/testfinegrainedcache.py
/usr/lib/python3.6/site-packages/mypy/test/testgraph.py
/usr/lib/python3.6/site-packages/mypy/test/testinfer.py
/usr/lib/python3.6/site-packages/mypy/test/testipc.py
/usr/lib/python3.6/site-packages/mypy/test/testmerge.py
/usr/lib/python3.6/site-packages/mypy/test/testmoduleinfo.py
/usr/lib/python3.6/site-packages/mypy/test/testparse.py
/usr/lib/python3.6/site-packages/mypy/test/testpep561.py
/usr/lib/python3.6/site-packages/mypy/test/testpythoneval.py
/usr/lib/python3.6/site-packages/mypy/test/testreports.py
/usr/lib/python3.6/site-packages/mypy/test/testsamples.py
/usr/lib/python3.6/site-packages/mypy/test/testsemanal.py
/usr/lib/python3.6/site-packages/mypy/test/testsolve.py
/usr/lib/python3.6/site-packages/mypy/test/teststubgen.py
/usr/lib/python3.6/site-packages/mypy/test/testsubtypes.py
/usr/lib/python3.6/site-packages/mypy/test/testtransform.py
/usr/lib/python3.6/site-packages/mypy/test/testtypegen.py
/usr/lib/python3.6/site-packages/mypy/test/testtypes.py
/usr/lib/python3.6/site-packages/mypy/test/typefixture.py
/usr/lib/python3.6/site-packages/mypy/test/update.py
/usr/lib/python3.6/site-packages/mypy/test/visitors.py
/usr/lib/python3.6/site-packages/mypy/traverser.py
/usr/lib/python3.6/site-packages/mypy/treetransform.py
/usr/lib/python3.6/site-packages/mypy/tvar_scope.py
/usr/lib/python3.6/site-packages/mypy/type_visitor.py
/usr/lib/python3.6/site-packages/mypy/typeanal.py
/usr/lib/python3.6/site-packages/mypy/types.py
/usr/lib/python3.6/site-packages/mypy/typeshed
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/BaseHTTPServer.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/ConfigParser.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/Cookie.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/HTMLParser.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/Queue.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/SimpleHTTPServer.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/SocketServer.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/StringIO.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/UserDict.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/UserList.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/UserString.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/__builtin__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/_ast.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/_collections.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/_functools.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/_hotshot.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/_io.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/_json.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/_md5.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/_sha.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/_sha256.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/_sha512.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/_socket.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/_sre.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/_struct.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/_symtable.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/_threading_local.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/_warnings.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/abc.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/ast.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/atexit.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/cPickle.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/cStringIO.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/collections.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/commands.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/compileall.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/cookielib.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/dircache.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/distutils
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/distutils/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/distutils/emxccompiler.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/dummy_thread.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/email
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/email/MIMEText.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/email/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/email/_parseaddr.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/email/base64mime.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/email/charset.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/email/encoders.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/email/feedparser.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/email/generator.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/email/header.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/email/iterators.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/email/message.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/email/mime
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/email/mime/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/email/mime/application.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/email/mime/audio.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/email/mime/base.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/email/mime/image.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/email/mime/message.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/email/mime/multipart.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/email/mime/nonmultipart.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/email/mime/text.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/email/parser.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/email/quoprimime.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/email/utils.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/encodings
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/encodings/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/encodings/utf_8.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/exceptions.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/fcntl.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/fnmatch.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/functools.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/future_builtins.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/gc.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/getopt.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/getpass.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/gettext.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/glob.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/gzip.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/hashlib.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/heapq.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/htmlentitydefs.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/httplib.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/imp.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/importlib.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/inspect.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/io.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/itertools.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/json.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/markupbase.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/md5.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/mimetools.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/multiprocessing
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/multiprocessing/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/multiprocessing/dummy
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/multiprocessing/dummy/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/multiprocessing/dummy/connection.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/multiprocessing/pool.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/multiprocessing/process.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/multiprocessing/util.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/mutex.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/nturl2path.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/os
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/os/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/os/path.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/os2emxpath.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/pipes.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/platform.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/popen2.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/posix.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/pydoc.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/random.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/re.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/repr.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/resource.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/rfc822.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/robotparser.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/runpy.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/sets.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/sha.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/shelve.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/shlex.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/signal.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/smtplib.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/spwd.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/sre_constants.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/sre_parse.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/stat.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/string.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/stringold.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/strop.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/subprocess.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/symbol.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/sys.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/tempfile.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/textwrap.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/thread.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/toaiff.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/tokenize.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/types.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/typing.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/unittest.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/urllib.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/urllib2.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/urlparse.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/user.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/whichdb.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2/xmlrpclib.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/__future__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/_bisect.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/_codecs.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/_csv.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/_heapq.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/_random.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/_weakref.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/_weakrefset.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/argparse.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/array.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/asynchat.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/asyncore.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/base64.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/binascii.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/binhex.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/bisect.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/builtins.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/bz2.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/cProfile.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/calendar.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/cgi.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/chunk.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/cmath.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/cmd.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/code.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/codecs.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/codeop.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/colorsys.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/contextlib.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/copy.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/crypt.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/csv.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/ctypes
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/ctypes/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/ctypes/util.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/ctypes/wintypes.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/datetime.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/decimal.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/difflib.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/dis.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/archive_util.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/bcppcompiler.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/ccompiler.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/cmd.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/command
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/command/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/command/bdist.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/command/bdist_dumb.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/command/bdist_msi.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/command/bdist_packager.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/command/bdist_rpm.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/command/bdist_wininst.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/command/build.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/command/build_clib.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/command/build_ext.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/command/build_py.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/command/build_scripts.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/command/check.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/command/clean.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/command/config.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/command/install.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/command/install_data.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/command/install_headers.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/command/install_lib.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/command/install_scripts.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/command/register.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/command/sdist.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/core.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/cygwinccompiler.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/debug.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/dep_util.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/dir_util.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/dist.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/errors.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/extension.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/fancy_getopt.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/file_util.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/filelist.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/log.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/msvccompiler.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/spawn.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/sysconfig.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/text_file.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/unixccompiler.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/util.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/distutils/version.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/doctest.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/errno.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/filecmp.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/fileinput.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/formatter.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/fractions.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/ftplib.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/genericpath.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/grp.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/hmac.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/imaplib.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/imghdr.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/keyword.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/lib2to3
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/lib2to3/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/lib2to3/pgen2
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/lib2to3/pgen2/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/lib2to3/pgen2/driver.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/lib2to3/pgen2/grammar.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/lib2to3/pgen2/literals.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/lib2to3/pgen2/parse.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/lib2to3/pgen2/pgen.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/lib2to3/pgen2/token.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/lib2to3/pgen2/tokenize.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/lib2to3/pygram.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/lib2to3/pytree.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/linecache.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/locale.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/logging
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/logging/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/logging/config.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/logging/handlers.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/macpath.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/marshal.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/math.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/mimetypes.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/mmap.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/netrc.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/nis.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/ntpath.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/numbers.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/opcode.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/operator.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/optparse.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/pdb.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/pickle.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/pickletools.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/pkgutil.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/plistlib.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/poplib.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/posixpath.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/pprint.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/profile.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/pstats.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/pty.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/pwd.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/py_compile.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/pyclbr.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/pyexpat
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/pyexpat/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/pyexpat/errors.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/pyexpat/model.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/quopri.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/readline.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/rlcompleter.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/sched.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/select.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/shutil.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/site.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/smtpd.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/sndhdr.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/socket.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/sqlite3
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/sqlite3/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/sqlite3/dbapi2.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/sre_compile.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/ssl.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/stringprep.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/struct.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/sunau.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/symtable.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/sysconfig.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/syslog.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/tabnanny.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/tarfile.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/telnetlib.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/termios.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/threading.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/time.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/timeit.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/token.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/trace.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/traceback.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/tty.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/unicodedata.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/uu.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/uuid.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/warnings.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/wave.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/weakref.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/webbrowser.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/wsgiref
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/wsgiref/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/wsgiref/handlers.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/wsgiref/headers.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/wsgiref/simple_server.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/wsgiref/types.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/wsgiref/util.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/wsgiref/validate.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/xdrlib.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/xml
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/xml/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/xml/etree
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/xml/etree/ElementInclude.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/xml/etree/ElementPath.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/xml/etree/ElementTree.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/xml/etree/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/xml/etree/cElementTree.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/xml/parsers
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/xml/parsers/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/xml/parsers/expat
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/xml/parsers/expat/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/xml/parsers/expat/errors.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/xml/parsers/expat/model.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/xml/sax
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/xml/sax/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/xml/sax/handler.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/xml/sax/saxutils.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/xml/sax/xmlreader.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/zipfile.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/zipimport.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/2and3/zlib.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3.5
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3.5/zipapp.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3.6
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3.6/secrets.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3.7
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3.7/contextvars.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3.7/dataclasses.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/_ast.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/_compression.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/_curses.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/_dummy_thread.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/_imp.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/_importlib_modulespec.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/_json.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/_markupbase.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/_operator.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/_posixsubprocess.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/_stat.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/_subprocess.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/_thread.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/_threading_local.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/_tracemalloc.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/_warnings.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/_winapi.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/abc.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/ast.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/asyncio
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/asyncio/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/asyncio/coroutines.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/asyncio/events.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/asyncio/futures.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/asyncio/locks.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/asyncio/protocols.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/asyncio/queues.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/asyncio/runners.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/asyncio/streams.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/asyncio/subprocess.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/asyncio/tasks.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/asyncio/transports.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/atexit.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/collections
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/collections/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/collections/abc.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/compileall.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/concurrent
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/concurrent/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/concurrent/futures
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/concurrent/futures/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/concurrent/futures/_base.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/concurrent/futures/process.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/concurrent/futures/thread.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/configparser.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/curses
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/curses/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/curses/ascii.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/curses/panel.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/curses/textpad.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/email
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/email/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/email/charset.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/email/contentmanager.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/email/encoders.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/email/errors.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/email/feedparser.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/email/generator.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/email/header.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/email/headerregistry.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/email/iterators.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/email/message.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/email/mime
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/email/mime/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/email/mime/application.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/email/mime/audio.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/email/mime/base.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/email/mime/image.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/email/mime/message.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/email/mime/multipart.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/email/mime/nonmultipart.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/email/mime/text.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/email/parser.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/email/policy.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/email/utils.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/encodings
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/encodings/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/encodings/utf_8.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/enum.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/faulthandler.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/fcntl.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/fnmatch.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/functools.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/gc.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/getopt.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/getpass.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/gettext.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/glob.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/gzip.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/hashlib.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/heapq.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/html
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/html/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/html/entities.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/html/parser.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/http
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/http/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/http/client.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/http/cookiejar.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/http/cookies.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/http/server.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/imp.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/importlib
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/importlib/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/importlib/abc.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/importlib/machinery.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/importlib/resources.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/importlib/util.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/inspect.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/io.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/ipaddress.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/itertools.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/json
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/json/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/json/decoder.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/json/encoder.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/lzma.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/msvcrt.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/multiprocessing
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/multiprocessing/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/multiprocessing/connection.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/multiprocessing/context.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/multiprocessing/dummy
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/multiprocessing/dummy/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/multiprocessing/dummy/connection.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/multiprocessing/managers.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/multiprocessing/pool.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/multiprocessing/process.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/multiprocessing/queues.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/multiprocessing/synchronize.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/nntplib.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/nturl2path.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/os
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/os/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/os/path.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/pathlib.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/pipes.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/platform.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/posix.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/queue.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/random.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/re.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/reprlib.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/resource.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/runpy.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/selectors.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/shelve.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/shlex.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/signal.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/smtplib.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/socketserver.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/spwd.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/sre_constants.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/sre_parse.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/stat.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/statistics.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/string.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/subprocess.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/symbol.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/sys.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/tempfile.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/textwrap.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/tkinter
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/tkinter/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/tkinter/commondialog.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/tkinter/constants.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/tkinter/dialog.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/tkinter/filedialog.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/tkinter/messagebox.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/tkinter/ttk.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/tokenize.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/tracemalloc.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/types.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/typing.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/unittest
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/unittest/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/unittest/mock.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/urllib
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/urllib/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/urllib/error.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/urllib/parse.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/urllib/request.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/urllib/response.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/stdlib/3/urllib/robotparser.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/tests
/usr/lib/python3.6/site-packages/mypy/typeshed/tests/__pycache__
/usr/lib/python3.6/site-packages/mypy/typeshed/tests/__pycache__/check_consistent.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/typeshed/tests/__pycache__/check_consistent.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/typeshed/tests/__pycache__/mypy_selftest.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/typeshed/tests/__pycache__/mypy_selftest.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/typeshed/tests/__pycache__/mypy_test.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/typeshed/tests/__pycache__/mypy_test.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/typeshed/tests/__pycache__/pytype_test.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/mypy/typeshed/tests/__pycache__/pytype_test.cpython-36.pyc
/usr/lib/python3.6/site-packages/mypy/typeshed/tests/check_consistent.py
/usr/lib/python3.6/site-packages/mypy/typeshed/tests/mypy_selftest.py
/usr/lib/python3.6/site-packages/mypy/typeshed/tests/mypy_test.py
/usr/lib/python3.6/site-packages/mypy/typeshed/tests/pytype_test.py
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/OpenSSL
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/OpenSSL/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/OpenSSL/crypto.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/concurrent
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/concurrent/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/concurrent/futures
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/concurrent/futures/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/concurrent/futures/_base.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/concurrent/futures/process.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/concurrent/futures/thread.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/cryptography
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/cryptography/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/cryptography/hazmat
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/cryptography/hazmat/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/cryptography/hazmat/primitives
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/cryptography/hazmat/primitives/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/cryptography/hazmat/primitives/asymmetric
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/cryptography/hazmat/primitives/asymmetric/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/cryptography/hazmat/primitives/asymmetric/dsa.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/cryptography/hazmat/primitives/asymmetric/rsa.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/cryptography/hazmat/primitives/serialization.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/enum.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/fb303
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/fb303/FacebookService.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/fb303/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/gflags.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/kazoo
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/kazoo/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/kazoo/client.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/kazoo/exceptions.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/kazoo/recipe
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/kazoo/recipe/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/kazoo/recipe/watchers.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/pathlib2.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/pycurl.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/pymssql.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/redis
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/redis/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/redis/client.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/redis/connection.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/redis/exceptions.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/redis/utils.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/routes
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/routes/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/routes/mapper.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/routes/util.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/scribe
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/scribe/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/scribe/scribe.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/scribe/ttypes.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/six
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/six/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/six/moves
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/six/moves/BaseHTTPServer.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/six/moves/SimpleHTTPServer.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/six/moves/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/six/moves/_dummy_thread.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/six/moves/_thread.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/six/moves/cPickle.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/six/moves/configparser.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/six/moves/email_mime_text.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/six/moves/html_entities.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/six/moves/html_parser.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/six/moves/http_client.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/six/moves/http_cookiejar.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/six/moves/http_cookies.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/six/moves/queue.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/six/moves/reprlib.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/six/moves/socketserver.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/six/moves/urllib
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/six/moves/urllib/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/six/moves/urllib/error.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/six/moves/urllib/parse.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/six/moves/urllib/request.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/six/moves/urllib/response.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/six/moves/urllib/robotparser.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/six/moves/urllib_error.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/six/moves/urllib_parse.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/six/moves/urllib_request.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/six/moves/urllib_response.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/six/moves/urllib_robotparser.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/six/moves/xmlrpc_client.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/tornado
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/tornado/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/tornado/concurrent.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/tornado/gen.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/tornado/httpclient.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/tornado/httpserver.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/tornado/httputil.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/tornado/ioloop.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/tornado/locks.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/tornado/netutil.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/tornado/process.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/tornado/tcpserver.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/tornado/testing.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/tornado/util.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2/tornado/web.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Cipher
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Cipher/AES.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Cipher/ARC2.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Cipher/ARC4.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Cipher/Blowfish.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Cipher/CAST.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Cipher/DES.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Cipher/DES3.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Cipher/PKCS1_OAEP.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Cipher/PKCS1_v1_5.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Cipher/XOR.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Cipher/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Cipher/blockalgo.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Hash
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Hash/HMAC.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Hash/MD2.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Hash/MD4.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Hash/MD5.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Hash/RIPEMD.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Hash/SHA.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Hash/SHA224.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Hash/SHA256.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Hash/SHA384.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Hash/SHA512.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Hash/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Hash/hashalgo.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Protocol
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Protocol/AllOrNothing.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Protocol/Chaffing.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Protocol/KDF.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Protocol/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/PublicKey
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/PublicKey/DSA.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/PublicKey/ElGamal.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/PublicKey/RSA.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/PublicKey/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/PublicKey/pubkey.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Random
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Random/Fortuna
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Random/Fortuna/FortunaAccumulator.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Random/Fortuna/FortunaGenerator.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Random/Fortuna/SHAd256.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Random/Fortuna/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Random/OSRNG
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Random/OSRNG/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Random/OSRNG/fallback.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Random/OSRNG/posix.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Random/OSRNG/rng_base.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Random/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Random/random.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Signature
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Signature/PKCS1_PSS.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Signature/PKCS1_v1_5.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Signature/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Util
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Util/Counter.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Util/RFC1751.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Util/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Util/asn1.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Util/number.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Util/randpool.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/Util/strxor.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/Crypto/pct_warnings.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/atomicwrites
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/atomicwrites/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/attr
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/attr/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/attr/converters.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/attr/exceptions.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/attr/filters.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/attr/validators.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/backports
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/backports/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/backports/ssl_match_hostname.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/backports_abc.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/boto
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/boto/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/boto/auth.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/boto/auth_handler.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/boto/compat.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/boto/connection.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/boto/ec2
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/boto/ec2/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/boto/elb
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/boto/elb/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/boto/exception.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/boto/kms
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/boto/kms/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/boto/kms/exceptions.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/boto/kms/layer1.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/boto/plugin.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/boto/regioninfo.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/boto/s3
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/boto/s3/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/boto/s3/acl.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/boto/s3/bucket.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/boto/s3/bucketlistresultset.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/boto/s3/bucketlogging.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/boto/s3/connection.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/boto/s3/cors.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/boto/s3/deletemarker.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/boto/s3/key.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/boto/s3/keyfile.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/boto/s3/lifecycle.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/boto/s3/multidelete.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/boto/s3/multipart.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/boto/s3/prefix.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/boto/s3/tagging.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/boto/s3/user.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/boto/s3/website.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/boto/utils.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/certifi.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/characteristic
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/characteristic/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/click
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/click/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/click/_termui_impl.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/click/core.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/click/decorators.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/click/exceptions.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/click/formatting.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/click/globals.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/click/parser.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/click/termui.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/click/testing.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/click/types.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/click/utils.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/croniter.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/dateutil
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/dateutil/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/dateutil/_common.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/dateutil/parser.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/dateutil/relativedelta.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/dateutil/rrule.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/dateutil/tz
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/dateutil/tz/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/dateutil/tz/_common.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/dateutil/tz/tz.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/emoji.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/first.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/flask
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/flask/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/flask/app.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/flask/blueprints.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/flask/cli.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/flask/config.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/flask/ctx.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/flask/debughelpers.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/flask/globals.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/flask/helpers.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/flask/json
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/flask/json/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/flask/json/tag.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/flask/logging.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/flask/sessions.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/flask/signals.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/flask/templating.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/flask/testing.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/flask/views.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/flask/wrappers.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/any_pb2.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/any_test_pb2.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/api_pb2.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/compiler
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/compiler/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/compiler/plugin_pb2.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/descriptor.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/descriptor_pb2.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/descriptor_pool.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/duration_pb2.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/empty_pb2.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/field_mask_pb2.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/internal
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/internal/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/internal/containers.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/internal/decoder.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/internal/encoder.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/internal/enum_type_wrapper.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/internal/message_listener.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/internal/well_known_types.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/internal/wire_format.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/json_format.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/map_proto2_unittest_pb2.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/map_unittest_pb2.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/message.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/message_factory.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/reflection.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/service.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/source_context_pb2.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/struct_pb2.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/symbol_database.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/test_messages_proto2_pb2.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/test_messages_proto3_pb2.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/timestamp_pb2.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/type_pb2.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/unittest_arena_pb2.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/unittest_custom_options_pb2.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/unittest_import_pb2.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/unittest_import_public_pb2.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/unittest_mset_pb2.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/unittest_mset_wire_format_pb2.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/unittest_no_arena_import_pb2.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/unittest_no_arena_pb2.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/unittest_no_generic_services_pb2.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/unittest_pb2.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/unittest_proto3_arena_pb2.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/util
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/util/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/util/json_format_proto3_pb2.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/google/protobuf/wrappers_pb2.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/itsdangerous.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/jinja2
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/jinja2/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/jinja2/_compat.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/jinja2/_stringdefs.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/jinja2/bccache.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/jinja2/compiler.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/jinja2/constants.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/jinja2/debug.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/jinja2/defaults.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/jinja2/environment.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/jinja2/exceptions.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/jinja2/ext.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/jinja2/filters.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/jinja2/lexer.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/jinja2/loaders.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/jinja2/meta.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/jinja2/nodes.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/jinja2/optimizer.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/jinja2/parser.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/jinja2/runtime.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/jinja2/sandbox.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/jinja2/tests.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/jinja2/utils.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/jinja2/visitor.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/markupsafe
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/markupsafe/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/markupsafe/_compat.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/markupsafe/_constants.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/markupsafe/_native.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/markupsafe/_speedups.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/mock.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/mypy_extensions.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/pymysql
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/pymysql/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/pymysql/charset.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/pymysql/connections.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/pymysql/constants
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/pymysql/constants/CLIENT.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/pymysql/constants/COMMAND.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/pymysql/constants/ER.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/pymysql/constants/FIELD_TYPE.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/pymysql/constants/FLAG.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/pymysql/constants/SERVER_STATUS.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/pymysql/constants/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/pymysql/converters.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/pymysql/cursors.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/pymysql/err.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/pymysql/times.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/pymysql/util.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/pynamodb
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/pynamodb/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/pynamodb/attributes.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/pynamodb/connection
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/pynamodb/connection/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/pynamodb/connection/base.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/pynamodb/connection/table.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/pynamodb/connection/util.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/pynamodb/constants.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/pynamodb/exceptions.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/pynamodb/indexes.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/pynamodb/models.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/pynamodb/settings.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/pynamodb/throttle.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/pynamodb/types.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/pytz
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/pytz/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests/adapters.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests/api.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests/auth.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests/compat.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests/cookies.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests/exceptions.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests/hooks.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests/models.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests/packages
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests/packages/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests/packages/urllib3
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests/packages/urllib3/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests/packages/urllib3/_collections.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests/packages/urllib3/connection.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests/packages/urllib3/connectionpool.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests/packages/urllib3/contrib
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests/packages/urllib3/contrib/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests/packages/urllib3/exceptions.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests/packages/urllib3/fields.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests/packages/urllib3/filepost.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests/packages/urllib3/packages
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests/packages/urllib3/packages/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests/packages/urllib3/packages/ssl_match_hostname
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests/packages/urllib3/packages/ssl_match_hostname/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests/packages/urllib3/poolmanager.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests/packages/urllib3/request.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests/packages/urllib3/response.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests/packages/urllib3/util
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests/packages/urllib3/util/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests/packages/urllib3/util/connection.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests/packages/urllib3/util/request.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests/packages/urllib3/util/response.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests/packages/urllib3/util/retry.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests/packages/urllib3/util/ssl_.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests/packages/urllib3/util/timeout.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests/packages/urllib3/util/url.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests/sessions.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests/status_codes.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests/structures.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/requests/utils.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/simplejson
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/simplejson/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/simplejson/decoder.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/simplejson/encoder.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/simplejson/scanner.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/singledispatch.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/tabulate.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/termcolor.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/toml.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/typing_extensions.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/ujson.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/werkzeug
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/werkzeug/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/werkzeug/_compat.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/werkzeug/_internal.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/werkzeug/_reloader.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/werkzeug/contrib
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/werkzeug/contrib/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/werkzeug/contrib/atom.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/werkzeug/contrib/cache.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/werkzeug/contrib/fixers.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/werkzeug/contrib/iterio.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/werkzeug/contrib/jsrouting.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/werkzeug/contrib/limiter.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/werkzeug/contrib/lint.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/werkzeug/contrib/profiler.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/werkzeug/contrib/securecookie.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/werkzeug/contrib/sessions.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/werkzeug/contrib/testtools.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/werkzeug/contrib/wrappers.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/werkzeug/datastructures.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/werkzeug/debug
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/werkzeug/debug/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/werkzeug/debug/console.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/werkzeug/debug/repr.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/werkzeug/debug/tbtools.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/werkzeug/exceptions.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/werkzeug/filesystem.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/werkzeug/formparser.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/werkzeug/http.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/werkzeug/local.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/werkzeug/posixemulation.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/werkzeug/routing.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/werkzeug/script.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/werkzeug/security.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/werkzeug/serving.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/werkzeug/test.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/werkzeug/testapp.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/werkzeug/urls.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/werkzeug/useragents.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/werkzeug/utils.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/werkzeug/wrappers.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/werkzeug/wsgi.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/yaml
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/yaml/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/yaml/composer.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/yaml/constructor.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/yaml/cyaml.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/yaml/dumper.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/yaml/emitter.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/yaml/error.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/yaml/events.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/yaml/loader.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/yaml/nodes.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/yaml/parser.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/yaml/reader.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/yaml/representer.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/yaml/resolver.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/yaml/scanner.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/yaml/serializer.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/2and3/yaml/tokens.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3.5
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3.5/contextvars.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/dataclasses.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/docutils
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/docutils/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/docutils/examples.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/docutils/nodes.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/docutils/parsers
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/docutils/parsers/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/docutils/parsers/rst
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/docutils/parsers/rst/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/docutils/parsers/rst/nodes.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/docutils/parsers/rst/roles.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/docutils/parsers/rst/states.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/jwt
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/jwt/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/jwt/algorithms.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/jwt/contrib
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/jwt/contrib/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/jwt/contrib/algorithms
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/jwt/contrib/algorithms/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/jwt/contrib/algorithms/py_ecdsa.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/jwt/contrib/algorithms/pycrypto.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/pkg_resources
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/pkg_resources/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/pkg_resources/py31compat.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six/moves
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six/moves/BaseHTTPServer.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six/moves/CGIHTTPServer.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six/moves/SimpleHTTPServer.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six/moves/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six/moves/_dummy_thread.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six/moves/_thread.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six/moves/builtins.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six/moves/cPickle.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six/moves/configparser.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six/moves/email_mime_base.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six/moves/email_mime_multipart.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six/moves/email_mime_nonmultipart.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six/moves/email_mime_text.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six/moves/html_entities.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six/moves/html_parser.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six/moves/http_client.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six/moves/http_cookiejar.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six/moves/http_cookies.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six/moves/queue.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six/moves/reprlib.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six/moves/socketserver.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six/moves/tkinter.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six/moves/tkinter_commondialog.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six/moves/tkinter_constants.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six/moves/tkinter_dialog.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six/moves/tkinter_filedialog.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six/moves/tkinter_tkfiledialog.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six/moves/tkinter_ttk.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six/moves/urllib
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six/moves/urllib/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six/moves/urllib/error.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six/moves/urllib/parse.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six/moves/urllib/request.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six/moves/urllib/response.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six/moves/urllib/robotparser.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six/moves/urllib_error.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six/moves/urllib_parse.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six/moves/urllib_request.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six/moves/urllib_response.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/six/moves/urllib_robotparser.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/typed_ast
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/typed_ast/__init__.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/typed_ast/ast27.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/typed_ast/ast3.pyi
/usr/lib/python3.6/site-packages/mypy/typeshed/third_party/3/typed_ast/conversions.pyi
/usr/lib/python3.6/site-packages/mypy/typestate.py
/usr/lib/python3.6/site-packages/mypy/typevars.py
/usr/lib/python3.6/site-packages/mypy/util.py
/usr/lib/python3.6/site-packages/mypy/version.py
/usr/lib/python3.6/site-packages/mypy/visitor.py
/usr/lib/python3.6/site-packages/mypy/xml
/usr/lib/python3.6/site-packages/mypy/xml/mypy-html.css
/usr/lib/python3.6/site-packages/mypy/xml/mypy-html.xslt
/usr/lib/python3.6/site-packages/mypy/xml/mypy-txt.xslt
/usr/lib/python3.6/site-packages/mypy/xml/mypy.xsd
/usr/share/doc/packages/mypy
/usr/share/doc/packages/mypy/README.md
/usr/share/doc/packages/mypy/html
/usr/share/doc/packages/mypy/html/_sources
/usr/share/doc/packages/mypy/html/_sources/additional_features.rst.txt
/usr/share/doc/packages/mypy/html/_sources/builtin_types.rst.txt
/usr/share/doc/packages/mypy/html/_sources/casts.rst.txt
/usr/share/doc/packages/mypy/html/_sources/cheat_sheet.rst.txt
/usr/share/doc/packages/mypy/html/_sources/cheat_sheet_py3.rst.txt
/usr/share/doc/packages/mypy/html/_sources/class_basics.rst.txt
/usr/share/doc/packages/mypy/html/_sources/command_line.rst.txt
/usr/share/doc/packages/mypy/html/_sources/common_issues.rst.txt
/usr/share/doc/packages/mypy/html/_sources/config_file.rst.txt
/usr/share/doc/packages/mypy/html/_sources/duck_type_compatibility.rst.txt
/usr/share/doc/packages/mypy/html/_sources/dynamic_typing.rst.txt
/usr/share/doc/packages/mypy/html/_sources/existing_code.rst.txt
/usr/share/doc/packages/mypy/html/_sources/extending_mypy.rst.txt
/usr/share/doc/packages/mypy/html/_sources/faq.rst.txt
/usr/share/doc/packages/mypy/html/_sources/final_attrs.rst.txt
/usr/share/doc/packages/mypy/html/_sources/generics.rst.txt
/usr/share/doc/packages/mypy/html/_sources/getting_started.rst.txt
/usr/share/doc/packages/mypy/html/_sources/index.rst.txt
/usr/share/doc/packages/mypy/html/_sources/installed_packages.rst.txt
/usr/share/doc/packages/mypy/html/_sources/introduction.rst.txt
/usr/share/doc/packages/mypy/html/_sources/kinds_of_types.rst.txt
/usr/share/doc/packages/mypy/html/_sources/literal_types.rst.txt
/usr/share/doc/packages/mypy/html/_sources/metaclasses.rst.txt
/usr/share/doc/packages/mypy/html/_sources/more_types.rst.txt
/usr/share/doc/packages/mypy/html/_sources/mypy_daemon.rst.txt
/usr/share/doc/packages/mypy/html/_sources/protocols.rst.txt
/usr/share/doc/packages/mypy/html/_sources/python2.rst.txt
/usr/share/doc/packages/mypy/html/_sources/python36.rst.txt
/usr/share/doc/packages/mypy/html/_sources/running_mypy.rst.txt
/usr/share/doc/packages/mypy/html/_sources/stubgen.rst.txt
/usr/share/doc/packages/mypy/html/_sources/stubs.rst.txt
/usr/share/doc/packages/mypy/html/_sources/supported_python_features.rst.txt
/usr/share/doc/packages/mypy/html/_sources/type_inference_and_annotations.rst.txt
/usr/share/doc/packages/mypy/html/_static
/usr/share/doc/packages/mypy/html/_static/ajax-loader.gif
/usr/share/doc/packages/mypy/html/_static/basic.css
/usr/share/doc/packages/mypy/html/_static/comment-bright.png
/usr/share/doc/packages/mypy/html/_static/comment-close.png
/usr/share/doc/packages/mypy/html/_static/comment.png
/usr/share/doc/packages/mypy/html/_static/css
/usr/share/doc/packages/mypy/html/_static/css/badge_only.css
/usr/share/doc/packages/mypy/html/_static/css/theme.css
/usr/share/doc/packages/mypy/html/_static/doctools.js
/usr/share/doc/packages/mypy/html/_static/documentation_options.js
/usr/share/doc/packages/mypy/html/_static/down-pressed.png
/usr/share/doc/packages/mypy/html/_static/down.png
/usr/share/doc/packages/mypy/html/_static/file.png
/usr/share/doc/packages/mypy/html/_static/fonts
/usr/share/doc/packages/mypy/html/_static/fonts/Inconsolata-Bold.ttf
/usr/share/doc/packages/mypy/html/_static/fonts/Inconsolata-Regular.ttf
/usr/share/doc/packages/mypy/html/_static/fonts/Lato-Bold.ttf
/usr/share/doc/packages/mypy/html/_static/fonts/Lato-Regular.ttf
/usr/share/doc/packages/mypy/html/_static/fonts/RobotoSlab-Bold.ttf
/usr/share/doc/packages/mypy/html/_static/fonts/RobotoSlab-Regular.ttf
/usr/share/doc/packages/mypy/html/_static/fonts/fontawesome-webfont.eot
/usr/share/doc/packages/mypy/html/_static/fonts/fontawesome-webfont.svg
/usr/share/doc/packages/mypy/html/_static/fonts/fontawesome-webfont.ttf
/usr/share/doc/packages/mypy/html/_static/fonts/fontawesome-webfont.woff
/usr/share/doc/packages/mypy/html/_static/jquery-3.2.1.js
/usr/share/doc/packages/mypy/html/_static/jquery.js
/usr/share/doc/packages/mypy/html/_static/js
/usr/share/doc/packages/mypy/html/_static/js/modernizr.min.js
/usr/share/doc/packages/mypy/html/_static/js/theme.js
/usr/share/doc/packages/mypy/html/_static/minus.png
/usr/share/doc/packages/mypy/html/_static/plus.png
/usr/share/doc/packages/mypy/html/_static/pygments.css
/usr/share/doc/packages/mypy/html/_static/searchtools.js
/usr/share/doc/packages/mypy/html/_static/underscore-1.3.1.js
/usr/share/doc/packages/mypy/html/_static/underscore.js
/usr/share/doc/packages/mypy/html/_static/up-pressed.png
/usr/share/doc/packages/mypy/html/_static/up.png
/usr/share/doc/packages/mypy/html/_static/websupport.js
/usr/share/doc/packages/mypy/html/additional_features.html
/usr/share/doc/packages/mypy/html/builtin_types.html
/usr/share/doc/packages/mypy/html/casts.html
/usr/share/doc/packages/mypy/html/cheat_sheet.html
/usr/share/doc/packages/mypy/html/cheat_sheet_py3.html
/usr/share/doc/packages/mypy/html/class_basics.html
/usr/share/doc/packages/mypy/html/command_line.html
/usr/share/doc/packages/mypy/html/common_issues.html
/usr/share/doc/packages/mypy/html/config_file.html
/usr/share/doc/packages/mypy/html/duck_type_compatibility.html
/usr/share/doc/packages/mypy/html/dynamic_typing.html
/usr/share/doc/packages/mypy/html/existing_code.html
/usr/share/doc/packages/mypy/html/extending_mypy.html
/usr/share/doc/packages/mypy/html/faq.html
/usr/share/doc/packages/mypy/html/final_attrs.html
/usr/share/doc/packages/mypy/html/generics.html
/usr/share/doc/packages/mypy/html/genindex.html
/usr/share/doc/packages/mypy/html/getting_started.html
/usr/share/doc/packages/mypy/html/index.html
/usr/share/doc/packages/mypy/html/installed_packages.html
/usr/share/doc/packages/mypy/html/introduction.html
/usr/share/doc/packages/mypy/html/kinds_of_types.html
/usr/share/doc/packages/mypy/html/literal_types.html
/usr/share/doc/packages/mypy/html/metaclasses.html
/usr/share/doc/packages/mypy/html/more_types.html
/usr/share/doc/packages/mypy/html/mypy_daemon.html
/usr/share/doc/packages/mypy/html/objects.inv
/usr/share/doc/packages/mypy/html/protocols.html
/usr/share/doc/packages/mypy/html/python2.html
/usr/share/doc/packages/mypy/html/python36.html
/usr/share/doc/packages/mypy/html/running_mypy.html
/usr/share/doc/packages/mypy/html/search.html
/usr/share/doc/packages/mypy/html/searchindex.js
/usr/share/doc/packages/mypy/html/stubgen.html
/usr/share/doc/packages/mypy/html/stubs.html
/usr/share/doc/packages/mypy/html/supported_python_features.html
/usr/share/doc/packages/mypy/html/type_inference_and_annotations.html
/usr/share/licenses/mypy
/usr/share/licenses/mypy/LICENSE


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 11:50:38 2024