-
Notifications
You must be signed in to change notification settings - Fork 8
Open
Description
PythonImproved 3.0 work has officially started... with this tracking issue. Gotta start somewhere.
- Move completely to
.sublime-syntax(unofficial docs). The.YAML-tmLanguagefiles can be renamed.sublime-syntaxwithout issues, or translated to.tmLanguagePLIST format withPackageDev. - Make more and better use of meta patterns, variables, stacks, and other
.sublime-syntaxenhancements for readability/maintainability - Make sure tests are comprehensive
- Clean up repo
- Python 3.6:
- F-strings, including
=specifier from 3.8 - Variable annotations
- Underscores in numeric literals
-
async,awaitin generators and comprehensions, are reserved keywords as of 3.7
- F-strings, including
- Python 3.7:
- Python 3.8:
-
:=walrus operator for assignment expressions - Positional-only parameters
-
kapitanluffy and maegul