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
I've just tried
mypy --fast-parser --python-version 3.6on code that utilizes some new Python 3.6 features and it failed.Breaking features:
error: invalid syntaxerror: 'yield' in async functionerror: invalid syntax