This repository was archived by the owner on Jul 5, 2023. It is now read-only.

Description
I've just tried mypy --fast-parser --python-version 3.6 on code that utilizes some new Python 3.6 features and it failed.
Breaking features:
- formatted string literals, PEP 498 --
error: invalid syntax
- asynchronous generators, PEP 525 --
error: 'yield' in async function
- asynchronous comprehensions, PEP 530 --
error: invalid syntax