1. Keyword-only arguments support pep-3102
Test case: def func(arg, *, arg2=None): print(arg2)
"arg2" will be underlined with red line
2. Set and Dict comprehensions