This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author zen-xu
Recipients zen-xu
Date 2022-03-05.14:35:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1646490927.78.0.116751120804.issue46929@roundup.psfhosted.org>
In-reply-to
Content
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
```
History
Date User Action Args
2022-03-05 14:35:27zen-xusetrecipients: + zen-xu
2022-03-05 14:35:27zen-xusetmessageid: <1646490927.78.0.116751120804.issue46929@roundup.psfhosted.org>
2022-03-05 14:35:27zen-xulinkissue46929 messages
2022-03-05 14:35:27zen-xucreate