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](https://docs.python.org/3/whatsnew/3.6.html#whatsnew36-pep498) -- `error: invalid syntax` * asynchronous generators, [PEP 525](https://docs.python.org/3/whatsnew/3.6.html#whatsnew36-pep525) -- `error: 'yield' in async function` * asynchronous comprehensions, [PEP 530](https://docs.python.org/3/whatsnew/3.6.html#whatsnew36-pep530) -- `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