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 docs@python, eamanu, mark.dickinson, rahul-kumi, rhettinger, serhiy.storchaka, tim.peters
Date 2020-10-18.08:20:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1603009226.05.0.433131347322.issue41822@roundup.psfhosted.org>
In-reply-to
Content
Also, we should document the meaning of the other fields.  Several of them are not self explanatory:

min_10_exp = -307

   does not mean that 2.3e-308 isn't normalized

   does mean that 10**-307 is normalized and 10**-308 isn't


min_exp = -1021

   does not mean that 2**-1021 is the lowest normalized value

   does mean ldexp(0.5, -1021) == float_info.min


decimal_dig = 15

   does not mean digits required to specify every unique float

   does mean, "number of decimal digits, q, such that any 
   floating-point number with q decimal digits can be rounded
   into a floating-point number with p radix b digits and back
   again without change to the q decimal digits"
History
Date User Action Args
2020-10-18 08:20:26rhettingersetrecipients: + rhettinger, tim.peters, mark.dickinson, docs@python, serhiy.storchaka, eamanu, rahul-kumi
2020-10-18 08:20:26rhettingersetmessageid: <1603009226.05.0.433131347322.issue41822@roundup.psfhosted.org>
2020-10-18 08:20:26rhettingerlinkissue41822 messages
2020-10-18 08:20:25rhettingercreate