We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
daff causes SyntaxError on launch with Python 3.7.
$ python3 --version Python 3.7.0 $ pip3 install daff $ daff Traceback (most recent call last): File "/usr/local/bin/daff", line 7, in <module> from daff import main File "/usr/local/bin/daff.py", line 2723 if io.async(): ^ SyntaxError: invalid syntax
The text was updated successfully, but these errors were encountered:
In Python 3.7, async is reserved as a keyword, so cannot be used as function name. Trying to call async() causes a SyntaxError exception.
async
async()
Sorry, something went wrong.
Thanks for reporting this, working on a fix in #116.
Please reopen if problem persists in version 1.3.33 - cheers!
Successfully merging a pull request may close this issue.
daff causes SyntaxError on launch with Python 3.7.
The text was updated successfully, but these errors were encountered: