Skip to content

Commit

Permalink
[3.12] gh-111342: fix typo in math.sumprod (GH-111416) (gh-111419)
Browse files Browse the repository at this point in the history
  • Loading branch information
miss-islington committed Oct 28, 2023
1 parent 2398036 commit c3f75b7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions Lib/test/test_math.py
Expand Up @@ -1292,6 +1292,7 @@ def test_sumprod_accuracy(self):
sumprod = math.sumprod
self.assertEqual(sumprod([0.1] * 10, [1]*10), 1.0)
self.assertEqual(sumprod([0.1] * 20, [True, False] * 10), 1.0)
self.assertEqual(sumprod([True, False] * 10, [0.1] * 20), 1.0)
self.assertEqual(sumprod([1.0, 10E100, 1.0, -10E100], [1.0]*4), 2.0)

@support.requires_resource('cpu')
Expand Down
@@ -0,0 +1 @@
Fixed typo in :func:`math.sumprod`.
2 changes: 1 addition & 1 deletion Modules/mathmodule.c
Expand Up @@ -2831,7 +2831,7 @@ math_sumprod_impl(PyObject *module, PyObject *p, PyObject *q)
PyErr_Clear();
goto finalize_flt_path;
}
} else if (q_type_float && (PyLong_CheckExact(p_i) || PyBool_Check(q_i))) {
} else if (q_type_float && (PyLong_CheckExact(p_i) || PyBool_Check(p_i))) {
flt_q = PyFloat_AS_DOUBLE(q_i);
flt_p = PyLong_AsDouble(p_i);
if (flt_p == -1.0 && PyErr_Occurred()) {
Expand Down

0 comments on commit c3f75b7

Please sign in to comment.