
April 25, 2022
4:04 p.m.
On Tue, 26 Apr 2022 at 09:00, <aanonyme.personne@hotmail.fr> wrote:
This is useful in the context of reducing the available methods and operator overloading, when subclassing a type. Typically, when subclassing a NamedTuple type, you often don't want the <, >, <=, >=, + or * operators to work, so in that case you would want for the related methods to return NotImplemented.
Normally, when you subclass a namedtuple, it's because you want a tuple. Do you perhaps want a dataclass instead? ChrisA