[issue26023] Missing signatures operator module

2022-04-02 Thread Irit Katriel
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, /)

[issue26023] Missing signatures operator module

2016-01-06 Thread Martin Panter
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 __

[issue26023] Missing signatures operator module

2016-01-06 Thread Freddy Rietdijk
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 --