Skip to content

Commit 56da6fc

Browse files
committed
math_methods: Re-sort and conform to surrounding spacing
1 parent 12fcd24 commit 56da6fc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Modules/mathmodule.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3224,10 +3224,10 @@ static PyMethodDef math_methods[] = {
32243224
{"asinh", math_asinh, METH_O, math_asinh_doc},
32253225
{"asinpi", math_asinpi, METH_O, math_asinpi_doc},
32263226
{"atan", math_atan, METH_O, math_atan_doc},
3227+
{"atan2", _PyCFunction_CAST(math_atan2), METH_FASTCALL, math_atan2_doc},
32273228
{"atanh", math_atanh, METH_O, math_atanh_doc},
3229+
{"atan2pi", _PyCFunction_CAST(math_atan2pi), METH_FASTCALL, math_atan2pi_doc},
32283230
{"atanpi", math_atanpi, METH_O, math_atanpi_doc},
3229-
{"atan2", _PyCFunction_CAST(math_atan2), METH_FASTCALL, math_atan2_doc},
3230-
{"atan2pi", _PyCFunction_CAST(math_atan2pi), METH_FASTCALL, math_atan2pi_doc},
32313231
{"cbrt", math_cbrt, METH_O, math_cbrt_doc},
32323232
MATH_CEIL_METHODDEF
32333233
{"copysign", _PyCFunction_CAST(math_copysign), METH_FASTCALL, math_copysign_doc},

0 commit comments

Comments
 (0)