#15438: add a note to math.pow() that suggests using **/pow() for integers. Patch by Mark Dickinson.

This commit is contained in:
Ezio Melotti 2013-02-23 04:53:44 +02:00
parent ad17bc0bf9
commit 739d5497c0
1 changed files with 4 additions and 0 deletions

View File

@ -202,6 +202,10 @@ Power and logarithmic functions
``x`` is negative, and ``y`` is not an integer then ``pow(x, y)``
is undefined, and raises :exc:`ValueError`.
Unlike the built-in ``**`` operator, :func:`math.pow` converts both
its arguments to type :class:`float`. Use ``**`` or the built-in
:func:`pow` function for computing exact integer powers.
.. function:: sqrt(x)