ZhengYu, Xu <zen...@outlook.com> 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 <rep...@bugs.python.org>
<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