Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
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
Next Next commit
Use widely used non-integer instead of non-integral
While both terms can be used to mean the same thing, "non-integer number" is the
more precise and commonly used term. "Non-integral number" might sometimes be used
in a broader sense in certain mathematical contexts, but it generally carries the
same meaning as "non-integer number" when referring to real numbers.
  • Loading branch information
adiaholic committed Jun 4, 2024
commit f31e5897919ed0c1f04bc676c465051a03fb045b
2 changes: 1 addition & 1 deletion Doc/library/functions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1559,7 +1559,7 @@ are always available. They are listed here in alphabetical order.
unless the second argument is negative; in that case, all arguments are
converted to float and a float result is delivered. For example, ``pow(10, 2)``
returns ``100``, but ``pow(10, -2)`` returns ``0.01``. For a negative base of
type :class:`int` or :class:`float` and a non-integral exponent, a complex
type :class:`int` or :class:`float` and a non-integer exponent, a complex
result is delivered. For example, ``pow(-9, 0.5)`` returns a value close
to ``3j``.

Expand Down