You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I knew I shouldn't even try them, especially taking into account that I dislike all these novelties. But then CPy stdlib was parsed by pure accident - they seem to start using it heavily.
Each of cases below is a failure:
def f1(a, *, b):
print(a, b)
f1(1, b=2)
def f2(a, *, b=[]):
print(a, b)
def f3(a, *, b=1):
print(a, b)