We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12fcd24 commit 56da6fcCopy full SHA for 56da6fc
1 file changed
Modules/mathmodule.c
@@ -3224,10 +3224,10 @@ static PyMethodDef math_methods[] = {
3224
{"asinh", math_asinh, METH_O, math_asinh_doc},
3225
{"asinpi", math_asinpi, METH_O, math_asinpi_doc},
3226
{"atan", math_atan, METH_O, math_atan_doc},
3227
+ {"atan2", _PyCFunction_CAST(math_atan2), METH_FASTCALL, math_atan2_doc},
3228
{"atanh", math_atanh, METH_O, math_atanh_doc},
3229
+ {"atan2pi", _PyCFunction_CAST(math_atan2pi), METH_FASTCALL, math_atan2pi_doc},
3230
{"atanpi", math_atanpi, METH_O, math_atanpi_doc},
- {"atan2", _PyCFunction_CAST(math_atan2), METH_FASTCALL, math_atan2_doc},
- {"atan2pi", _PyCFunction_CAST(math_atan2pi), METH_FASTCALL, math_atan2pi_doc},
3231
{"cbrt", math_cbrt, METH_O, math_cbrt_doc},
3232
MATH_CEIL_METHODDEF
3233
{"copysign", _PyCFunction_CAST(math_copysign), METH_FASTCALL, math_copysign_doc},
0 commit comments