diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2010-07-29 13:56:56 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2010-07-29 13:56:56 (GMT) |
commit | 6a74d34d7c8e9280efb1f4c72b07938c3436c18b (patch) | |
tree | e2c00d31d6072d14ba1efb2408698e8e3dd67c11 | |
parent | 46aa5c5ba1a59d7afb1fd873edc3e6cbeff923e5 (diff) | |
download | cpython-6a74d34d7c8e9280efb1f4c72b07938c3436c18b.zip cpython-6a74d34d7c8e9280efb1f4c72b07938c3436c18b.tar.gz cpython-6a74d34d7c8e9280efb1f4c72b07938c3436c18b.tar.bz2 |
Fix typo.
-rw-r--r-- | Doc/tutorial/floatingpoint.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/floatingpoint.rst b/Doc/tutorial/floatingpoint.rst index 0230183..c06568e 100644 --- a/Doc/tutorial/floatingpoint.rst +++ b/Doc/tutorial/floatingpoint.rst @@ -81,7 +81,7 @@ approximated by ``3602879701896397 / 2 ** 55``. Since all of these decimal values share the same approximation, any one of them could be displayed while still preserving the invariant ``eval(repr(x)) == x``. -Historically, the Python prompt and built-in :func:`repr` function would chose +Historically, the Python prompt and built-in :func:`repr` function would choose the one with 17 significant digits, ``0.10000000000000001``. Starting with Python 3.1, Python (on most systems) is now able to choose the shortest of these and simply display ``0.1``. |