1 2 3 4 5 6
def f(a, b): return a + b f(1, **[2]) # Raise=TypeError('f() argument after ** must be a mapping, not list')