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 tim.peters
Recipients Marco Sulla, brandtbucher, cheryl.sabella, mark.dickinson, rhettinger, serhiy.storchaka, tim.peters
Date 2019-12-15.21:56:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1576446997.51.0.987631619812.issue36095@roundup.psfhosted.org>
In-reply-to
Content
Marco, your

> I suppose the sorting function checks if the objects of
> the iterable are minor that another object

was incoherent to me.  No idea what "are minor that another object" could possibly mean.

As Mark explained, the mathematical meaning of "orderable" is more expensive to check than it is to do sorting.

Mark also explained that list.sort() guarantees to use only "<" (__lt__) comparisons.  Because your message was incoherent to me (see above), I don't know what purpose would be served by checking ">=" too, but if there _is_ a coherent purpose, list.sort() cannot use ">=" regardless.

Reply to Mark's message instead of this one?  You haven't addressed any of the points he raised, and they're all deal-breakers.
History
Date User Action Args
2019-12-15 21:56:37tim.peterssetrecipients: + tim.peters, rhettinger, mark.dickinson, serhiy.storchaka, cheryl.sabella, brandtbucher, Marco Sulla
2019-12-15 21:56:37tim.peterssetmessageid: <1576446997.51.0.987631619812.issue36095@roundup.psfhosted.org>
2019-12-15 21:56:37tim.peterslinkissue36095 messages
2019-12-15 21:56:37tim.peterscreate