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 RusselWebber
Recipients RusselWebber, rhettinger
Date 2022-01-15.10:55:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1642244147.78.0.364663520493.issue46388@roundup.psfhosted.org>
In-reply-to
Content
A few lines of the functools.total_ordering implementation are not covered by the tests.

Specifically, coverage.py shows the returns of NotImplemented:
...
    if op_result is NotImplemented:
        return op_result 
...

as not covered in the functions: _gt_from_lt, _ge_from_le, _lt_from_le, _lt_from_gt, _le_from_ge and _gt_from_ge

I have a PR for this.
History
Date User Action Args
2022-01-15 10:55:47RusselWebbersetrecipients: + RusselWebber, rhettinger
2022-01-15 10:55:47RusselWebbersetmessageid: <1642244147.78.0.364663520493.issue46388@roundup.psfhosted.org>
2022-01-15 10:55:47RusselWebberlinkissue46388 messages
2022-01-15 10:55:47RusselWebbercreate