1 2 3 4 5 6 7
# Test: missing all positional-only arguments def f(a, b, /): return a + b f() # Raise=TypeError("f() missing 2 required positional arguments: 'a' and 'b'")