__rlshift__, __ror__ in Python

I noticed that this recipe apparently uses __rlshift__ , __ror__ as operators. But they are not in the documentation ! Can someone explain this and maybe point to some documents?

+6
operators python
source share
1 answer

See the documentation for:

__rlshift__ is the version of the replaced __lshift__ operands used when the right operand supports the operation, but the left operand does not.

+6
source share

All Articles