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 veky
Recipients BTaskaya, tim.peters, veky
Date 2020-02-07.06:44:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1581057883.55.0.638702816373.issue39576@roundup.psfhosted.org>
In-reply-to
Content
> Of course the result is exactly 2.  Which I have enough RAM to hold ;-)

You might think so, but if you write it as 2.00...0 with 

>>> decimal.MAX_PREC
999999999999999999

zeros, I think you're overestimating your RAM capacity. :-P

Now, what is the exact significance of MAX_PREC, I don't know. But I guess some hard limits were needed for standards compliance, and Python didn't want to limit you there. Of course, same as with recursionlimit, it might be better to actually have some reasonable _lower_ limit that we know is actually safe.
History
Date User Action Args
2020-02-07 06:44:43vekysetrecipients: + veky, tim.peters, BTaskaya
2020-02-07 06:44:43vekysetmessageid: <1581057883.55.0.638702816373.issue39576@roundup.psfhosted.org>
2020-02-07 06:44:43vekylinkissue39576 messages
2020-02-07 06:44:43vekycreate