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 mark.dickinson, rhettinger
Date 2011-04-20.15:58:48
SpamBayes Score 0.00010024911
Marked as misclassified No
Message-id <1303315132.33.0.304023866846.issue11888@psf.upfronthosting.co.za>
In-reply-to
Content
The three most popular logarithm bases are 10, e, and 2.  The math library has direct function calls for the first two but not the latter which is important in informatics.

Since a direct call can use a custom algorithm or native hardware support (such as the FLDLN2 fpu instruction), it provides better speed and accuracy than our existing math.log(x, 2) option.
History
Date User Action Args
2011-04-20 15:58:52rhettingersetrecipients: + rhettinger, mark.dickinson
2011-04-20 15:58:52rhettingersetmessageid: <1303315132.33.0.304023866846.issue11888@psf.upfronthosting.co.za>
2011-04-20 15:58:48rhettingerlinkissue11888 messages
2011-04-20 15:58:48rhettingercreate