diff options
author | Alperen Serkan Aksöz <61659936+Sekomer@users.noreply.github.com> | 2021-03-03 13:59:52 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-03 13:59:52 (GMT) |
commit | 09605ad7269c8d9828fa3c175ad7c9efe8d12762 (patch) | |
tree | c97cc9669b07695c524ac147a7d402d7c7fcf672 /Modules | |
parent | b04f1cb9df7ad93366ef0ef7d8088effc576c5ae (diff) | |
download | cpython-09605ad7269c8d9828fa3c175ad7c9efe8d12762.zip cpython-09605ad7269c8d9828fa3c175ad7c9efe8d12762.tar.gz cpython-09605ad7269c8d9828fa3c175ad7c9efe8d12762.tar.bz2 |
missing multiply symbol in the documentation (GH-24686)
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/mathmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c index d0df58c..d0dd12d 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 |