Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Doc/library/math.rst
Original file line number Diff line number Diff line change
Expand Up @@ -350,8 +350,8 @@ Floating point manipulation functions

*abs_tol* is the absolute tolerance; it defaults to ``0.0`` and it must be
nonnegative. When comparing ``x`` to ``0.0``, ``isclose(x, 0)`` is computed
as ``abs(x) <= rel_tol * abs(x)``, which is ``False`` for any ``x`` and
rel_tol less than ``1.0``. So add an appropriate positive abs_tol argument
as ``abs(x) <= rel_tol * abs(x)``, which is ``False`` for any nonzero ``x`` and
*rel_tol* less than ``1.0``. So add an appropriate positive *abs_tol* argument
to the call.

The IEEE 754 special values of ``NaN``, ``inf``, and ``-inf`` will be
Expand Down
Loading