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.

classification
Title: PEP 485 tiny typo
Type: behavior Stage: resolved
Components: Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: bbolker, berker.peksag
Priority: normal Keywords:

Created on 2017-10-09 17:11 by bbolker, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (2)
msg303987 - (view) Author: Ben Bolker (bbolker) Date: 2017-10-09 17:11
In two places in https://www.python.org/dev/peps/pep-0485/ floating point numbers are incorrectly formatted: 1-e8 and 1-e9 rather than 1e-8 and 1e-9 ("absolute tolerance default", para. 3 and "relative tolerance default", para. 1)
msg304012 - (view) Author: Berker Peksag (berker.peksag) * (Python committer) Date: 2017-10-10 05:28
Thank you for the report. Fixed in https://github.com/python/peps/commit/070dc7e037e5f66e4e17b661641503815a8bbe05

(By the way, you can report issues like this at https://github.com/python/peps/issues or send a PR directly.)
History
Date User Action Args
2022-04-11 14:58:53adminsetgithub: 75917
2017-10-10 05:28:52berker.peksagsetstatus: open -> closed

type: enhancement -> behavior

nosy: + berker.peksag
messages: + msg304012
resolution: fixed
stage: resolved
2017-10-09 17:11:10bbolkercreate