You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.
In pure Python mode, the __richcmp__() special method is not available for cdef classes, only __eq__() and friends can be used. These must be aggregated into __richcmp__() somehow.
In pure Python mode, the richcmp() special method is not available, only eq() and friends can be used. These must be aggregated into richcmp() somehow.
to
In pure Python mode, the __richcmp__() special method is not available, only __eq__() and friends can be used. These must be aggregated into __richcmp__() somehow.
commented
In pure Python mode, the __richcmp__() special method is not available, only __eq__() and friends can be used. These must be aggregated into __richcmp__() somehow.
to
In pure Python mode, the __richcmp__() special method is not available for cdef classes, only __eq__() and friends can be used. These must be aggregated into __richcmp__() somehow.
commented
In pure Python mode, the
__richcmp__()
special method is not available for cdef classes, only__eq__()
and friends can be used. These must be aggregated into__richcmp__()
somehow.Migrated from http://trac.cython.org/ticket/130
The text was updated successfully, but these errors were encountered: