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:33:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1646490810.86.0.339104113044.issue46929@roundup.psfhosted.org>
In-reply-to
Content
```
class C:
    def __rrshift__(self, v):
        return 1

C() >> C()   # raise TypeError: unsupported operand types(s) for >>: 'C' and 'C'
```
History
Date User Action Args
2022-03-05 14:33:30zen-xusetrecipients: + zen-xu
2022-03-05 14:33:30zen-xusetmessageid: <1646490810.86.0.339104113044.issue46929@roundup.psfhosted.org>
2022-03-05 14:33:30zen-xulinkissue46929 messages
2022-03-05 14:33:30zen-xucreate