From: Raymond Hettinger Date: Sat, 14 Jan 2023 00:53:06 +0000 (-0600) Subject: Fix typo in docs (GH-101025) X-Git-Tag: v3.12.0a5~186 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=010576c6ea7e687cf2cb572f3f40432df9692e4e;p=thirdparty%2FPython%2Fcpython.git Fix typo in docs (GH-101025) --- diff --git a/Doc/library/math.rst b/Doc/library/math.rst index 0e888c4d4e42..797f32408eac 100644 --- a/Doc/library/math.rst +++ b/Doc/library/math.rst @@ -299,7 +299,7 @@ Number-theoretic and representation functions Roughly equivalent to:: - sum(itertools.starmap(operator.mul, zip(p, q, strict=true))) + sum(itertools.starmap(operator.mul, zip(p, q, strict=True))) For float and mixed int/float inputs, the intermediate products and sums are computed with extended precision.