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 kenfos
Recipients kenfos
Date 2021-09-22.09:51:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1632304301.35.0.921542504833.issue45263@roundup.psfhosted.org>
In-reply-to
Content
When round is given 3 as argument for number of decimal points, the expected behaviour is to return a digit with 3 decimal points

Example:

ig1 = 0.4199730940219749
ig2 = 0.4189730940219749
print(round(ig1, 3)) # 0.42 expected  to be 0.420
print(round(ig2, 3)) # 0.419
History
Date User Action Args
2021-09-22 09:51:42kenfossetrecipients: + kenfos
2021-09-22 09:51:41kenfossetmessageid: <1632304301.35.0.921542504833.issue45263@roundup.psfhosted.org>
2021-09-22 09:51:41kenfoslinkissue45263 messages
2021-09-22 09:51:41kenfoscreate