Menu

#1121 Improve Python 3 and 2.7 support

open
Editor (491)
5
2010-04-12
2010-04-12
1st1
No

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

Discussion