ZhengYu, Xu <[email protected]> added the comment:

But with different classed will be right

```
class C:
    def __rrshift__(self, v):
        return 1

class D:
    def __rrshift__(self, v):
        return 2

C() >> D() # 2
```

----------

_______________________________________
Python tracker <[email protected]>
<https://bugs.python.org/issue46929>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to