summaryrefslogtreecommitdiffstats
path: root/Modules/clinic/mathmodule.c.h
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2017-01-21 13:10:52 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2017-01-21 13:10:52 (GMT)
commit5e65cd39dfe73891b16d9c771892e1bc282c1eb9 (patch)
tree1e35edf9a52cf7f8f677e971be50ad0391c48dd0 /Modules/clinic/mathmodule.c.h
parentd1b230e48b81eb90d10f0ceb4e34c547800bd3a8 (diff)
downloadcpython-5e65cd39dfe73891b16d9c771892e1bc282c1eb9.zip
cpython-5e65cd39dfe73891b16d9c771892e1bc282c1eb9.tar.gz
cpython-5e65cd39dfe73891b16d9c771892e1bc282c1eb9.tar.bz2
Issue #29282: Backed out changeset b33012ef1417
Diffstat (limited to 'Modules/clinic/mathmodule.c.h')
-rw-r--r--Modules/clinic/mathmodule.c.h36
1 files changed, 1 insertions, 35 deletions
diff --git a/Modules/clinic/mathmodule.c.h b/Modules/clinic/mathmodule.c.h
index 4e9fe20..84a7a70 100644
--- a/Modules/clinic/mathmodule.c.h
+++ b/Modules/clinic/mathmodule.c.h
@@ -80,40 +80,6 @@ PyDoc_STRVAR(math_factorial__doc__,
#define MATH_FACTORIAL_METHODDEF \
{"factorial", (PyCFunction)math_factorial, METH_O, math_factorial__doc__},
-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.");
-
-#define MATH_FMA_METHODDEF \
- {"fma", (PyCFunction)math_fma, METH_FASTCALL, math_fma__doc__},
-
-static PyObject *
-math_fma_impl(PyObject *module, double x, double y, double z);
-
-static PyObject *
-math_fma(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames)
-{
- PyObject *return_value = NULL;
- double x;
- double y;
- double z;
-
- if (!_PyArg_ParseStack(args, nargs, "ddd:fma",
- &x, &y, &z)) {
- goto exit;
- }
-
- if (!_PyArg_NoStackKeywords("fma", kwnames)) {
- goto exit;
- }
- return_value = math_fma_impl(module, x, y, z);
-
-exit:
- return return_value;
-}
-
PyDoc_STRVAR(math_trunc__doc__,
"trunc($module, x, /)\n"
"--\n"
@@ -570,4 +536,4 @@ math_isclose(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwna
exit:
return return_value;
}
-/*[clinic end generated code: output=f428e1075d00c334 input=a9049054013a1b77]*/
+/*[clinic end generated code: output=71806f73a5c4bf0b input=a9049054013a1b77]*/