Issue 26023: Missing signatures operator module (original) (raw)

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, /)
    Same as a * b.

ne(a, b, /)
    Same as a != b.

neg(a, /)
    Same as -a.

not_(a, /)
    Same as not a.

or_(a, b, /)
    Same as a | b.

pos(a, /)
    Same as +a.

pow(a, b, /)
    Same as a ** b.

rshift(a, b, /)
    Same as a >> b.