[Python-checkins] missing multiply symbol in the documentation (GH-24686)

JulienPalard webhook-mailer at python.org
Wed Mar 3 09:00:08 EST 2021


https://github.com/python/cpython/commit/09605ad7269c8d9828fa3c175ad7c9efe8d12762
commit: 09605ad7269c8d9828fa3c175ad7c9efe8d12762
branch: master
author: Alperen Serkan Aksöz <61659936+Sekomer at users.noreply.github.com>
committer: JulienPalard <julien at palard.fr>
date: 2021-03-03T14:59:52+01:00
summary:

missing multiply symbol in the documentation (GH-24686)

files:
M Modules/mathmodule.c

diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c
index d0df58c63e110..d0dd12d25966a 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



More information about the Python-checkins mailing list