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 rhettinger
Recipients Camion, gvanrossum, rhettinger, tim.peters
Date 2021-01-11.03:04:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1610334268.01.0.137623009301.issue42886@roundup.psfhosted.org>
In-reply-to
Content
> Any principled change costs more than it's worth :-(

For anyone wanting to go forward with this, here's a summary of the feature request:

    Given two non-zero same signed integers x and y,
    log10(Fraction(x, y)) does the same as log10(x / y).

    This works well unless the ratio of x to y is outside
    the range supported by floats.

    What is desired is that for extreme values of x and y,
    that log10() will treat the fraction differently and
    compute log10(x) - log10(y) instead of log10(x / y).
History
Date User Action Args
2021-01-11 03:04:28rhettingersetrecipients: + rhettinger, gvanrossum, tim.peters, Camion
2021-01-11 03:04:28rhettingersetmessageid: <1610334268.01.0.137623009301.issue42886@roundup.psfhosted.org>
2021-01-11 03:04:28rhettingerlinkissue42886 messages
2021-01-11 03:04:27rhettingercreate