From b1f8b3f753fd8d013cabb0808ff3bb49adaf1bfb Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Thu, 14 Mar 2024 00:06:41 +0100 Subject: [PATCH] Run make clinic --- Modules/clinic/mathmodule.c.h | 6 ++++-- Modules/mathmodule.c | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Modules/clinic/mathmodule.c.h b/Modules/clinic/mathmodule.c.h index 69a0059e1ff34fc..666b6b3790dae53 100644 --- a/Modules/clinic/mathmodule.c.h +++ b/Modules/clinic/mathmodule.c.h @@ -208,7 +208,9 @@ PyDoc_STRVAR(math_fma__doc__, "fma($module, x, y, z, /)\n" "--\n" "\n" -"Fused multiply-add operation. Compute (x * y) + z with a single round."); +"Fused multiply-add operation.\n" +"\n" +"Compute (x * y) + z with a single round."); #define MATH_FMA_METHODDEF \ {"fma", _PyCFunction_CAST(math_fma), METH_FASTCALL, math_fma__doc__}, @@ -1009,4 +1011,4 @@ math_ulp(PyObject *module, PyObject *arg) exit: return return_value; } -/*[clinic end generated code: output=be5b7c1362559e1f input=a9049054013a1b77]*/ +/*[clinic end generated code: output=9fe3f007f474e015 input=a9049054013a1b77]*/ diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c index 1e3924760273e47..8ba0431f4a47b79 100644 --- a/Modules/mathmodule.c +++ b/Modules/mathmodule.c @@ -2336,7 +2336,7 @@ Compute (x * y) + z with a single round. static PyObject * math_fma_impl(PyObject *module, double x, double y, double z) -/*[clinic end generated code: output=4fc8626dbc278d17 input=2ae8bb2a6e0f8b77]*/ +/*[clinic end generated code: output=4fc8626dbc278d17 input=e3ad1f4a4c89626e]*/ { double r = fma(x, y, z);