How to gracefully rewrite _ _ eq__

Magic methods

class myclass:
     def __eq__(self, other):

he rewrites all the = =, actions.
and what I want is to use this _ _ eq__
only when compared with their peers. How to implement

gracefully?
-sharp,
 def __eq__(self, other):
        if type(other)==type(self):
            return self.value==other.value
        else:
            super(SBTNode, self).__eq__(other)
Aug.11,2021

I don't know the more concise


else can be omitted; super is missing return .

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b38e1c-2b8c8.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b38e1c-2b8c8.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?