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
According to latest python version, this mode is missing the control keywords: async, await, nonlocal, with
async
await
nonlocal
with
Python 3.11.3 (main, May 23 2023, 12:54:10) [Clang 14.0.3 (clang-1403.0.22.14.1)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import keyword >>> keyword.kwlist ['False', 'None', 'True', 'and', 'as', 'assert', 'async', 'await', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'nonlocal', 'not', 'or', 'pass', 'raise', 'return', 'try', 'while', 'with', 'yield']
The text was updated successfully, but these errors were encountered:
Issue subethaedit#239 - Update python mode keywords
1c55fa7
Adding the control keywords: async, await, nonlocal, with
No branches or pull requests
According to latest python version, this mode is missing the control keywords:
async
,await
,nonlocal
,with
The text was updated successfully, but these errors were encountered: