[issue29389] math.isclose signature contains incorrect start parameter

2017-01-30 Thread Shmuel Amar
Shmuel Amar added the comment: ok thanks i think it can be closed -- ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue29389> ___ ___

[issue29389] math.isclose signature contains incorrect start parameter

2017-01-30 Thread Shmuel Amar
Shmuel Amar added the comment: documentation of math.isclose() signature on https://docs.python.org/3/library/math.html#math.isclose is as follows: math.isclose(a, b, *, rel_tol=1e-09, abs_tol=0.0) the third star '*' argument is not allowed inside the function: https://hg.python.org

[issue29389] math.isclose signature contains incorrect start parameter

2017-01-30 Thread Shmuel Amar
New submission from Shmuel Amar: documentation of math.isclose() signature on https://docs.python.org/3/library/math.html#math.isclose is as follows: math.isclose(a, b, *, rel_tol=1e-09, abs_tol=0.0) the third star '*' argument is not allowed inside the function: https://hg.python.org