diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2024-07-19 08:06:02 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-19 08:06:02 (GMT) |
commit | 1a0c7b9ba48a2dffb70bb0c7327abae1d3e87356 (patch) | |
tree | df3bcce3fcd01a8230304dad9431cfab8ef406cb /Doc/whatsnew/3.2.rst | |
parent | 420d94312824825a18fa1fd9a36773626a54d97a (diff) | |
download | cpython-1a0c7b9ba48a2dffb70bb0c7327abae1d3e87356.zip cpython-1a0c7b9ba48a2dffb70bb0c7327abae1d3e87356.tar.gz cpython-1a0c7b9ba48a2dffb70bb0c7327abae1d3e87356.tar.bz2 |
gh-121905: Consistently use "floating-point" instead of "floating point" (GH-121907)
Diffstat (limited to 'Doc/whatsnew/3.2.rst')
-rw-r--r-- | Doc/whatsnew/3.2.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst index a6b3820..ac05b59 100644 --- a/Doc/whatsnew/3.2.rst +++ b/Doc/whatsnew/3.2.rst @@ -1312,7 +1312,7 @@ An early decision to limit the interoperability of various numeric types has been relaxed. It is still unsupported (and ill-advised) to have implicit mixing in arithmetic expressions such as ``Decimal('1.1') + float('1.1')`` because the latter loses information in the process of constructing the binary -float. However, since existing floating point value can be converted losslessly +float. However, since existing floating-point value can be converted losslessly to either a decimal or rational representation, it makes sense to add them to the constructor and to support mixed-type comparisons. |