diff options
author | Georg Brandl <georg@python.org> | 2009-04-24 19:06:29 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-04-24 19:06:29 (GMT) |
commit | b58f46f6914ec8f9b18ef3240a384d80e34c3bd1 (patch) | |
tree | d098c2e10c0a3623520fbdc020b09b59ee73e100 /Doc/tutorial/floatingpoint.rst | |
parent | 8f40e099c39084f18be980ded5521603fe68800a (diff) | |
download | cpython-b58f46f6914ec8f9b18ef3240a384d80e34c3bd1.zip cpython-b58f46f6914ec8f9b18ef3240a384d80e34c3bd1.tar.gz cpython-b58f46f6914ec8f9b18ef3240a384d80e34c3bd1.tar.bz2 |
Remove leftover word.
Diffstat (limited to 'Doc/tutorial/floatingpoint.rst')
-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 34c654b..f060e69 100644 --- a/Doc/tutorial/floatingpoint.rst +++ b/Doc/tutorial/floatingpoint.rst @@ -78,7 +78,7 @@ nearest approximate binary fraction. For example, the numbers ``0.1`` and ``0.10000000000000001`` and ``0.1000000000000000055511151231257827021181583404541015625`` are all approximated by ``3602879701896397 / 2 ** 55``. Since all of these decimal -values share the same approximation, any one of them could be displayed and +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 |