From: Alperen Serkan Aksöz <61659936+Sekomer@users.noreply.github.com> Date: Wed, 3 Mar 2021 13:59:52 +0000 (+0300) Subject: missing multiply symbol in the documentation (GH-24686) X-Git-Tag: v3.10.0a7~210 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=09605ad7269c8d9828fa3c175ad7c9efe8d12762;p=thirdparty%2FPython%2Fcpython.git missing multiply symbol in the documentation (GH-24686) --- diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c index d0df58c63e11..d0dd12d25966 100644 --- a/Modules/mathmodule.c +++ b/Modules/mathmodule.c @@ -1875,7 +1875,7 @@ math_isqrt(PyObject *module, PyObject *n) * (1) * * (1) * * (1 * 3 * 5) * - * (1 * 3 * 5 * 7 * 9) + * (1 * 3 * 5 * 7 * 9) * * (1 * 3 * 5 * 7 * 9 * 11 * 13 * 15 * 17 * 19) * * Here i goes from large to small: the first term corresponds to i=4 (any