Cython generates the __new__ method even for classes without data. Recent change in CPython broke multiple inheritance from Cython classes. That change was reverted for backward compatibility, but if Cython would not generate trivial __new__ for empty classes, it would help to push that change back.
Cython generates the
__new__method even for classes without data. Recent change in CPython broke multiple inheritance from Cython classes. That change was reverted for backward compatibility, but if Cython would not generate trivial__new__for empty classes, it would help to push that change back.