Irit Katriel added the comment:
I think this was fixed by now, this is an excerpt from help(operator):
lshift(a, b, /)
Same as a << b.
lt(a, b, /)
Same as a < b.
matmul(a, b, /)
Same as a @ b.
mod(a, b, /)
Same as a % b.
mul(a, b, /)
Martin Panter added the comment:
Perhaps the patch in Issue 20186 (Argument Clinic conversion including the
module) will help. I noticed there was some concern about reduced performance;
I’m not sure if that is still a problem or not.
--
nosy: +martin.panter
__
New submission from Freddy Rietdijk:
The operator module has no signatures for (most) of the functions defined in it.
Use case:
The multipledispatch module uses inspect.getfullargspec and therefore the
functions in operator cannot be used in combination with the @dispatch decorator
--