fast_add(a, b, /) that returns a + b, where a and b are declared positional-only using the / marker, meaning they can never be passed as keyword arguments (this mirrors how many built-in CPython functions are defined for performance/clarity reasons).fast_add(2, 3)
5
Called positionally, which is the only way allowed.
Place a bare / in the parameter list after the parameters that should be positional-only.
Everything before the / cannot be supplied as a keyword argument.