From: Raymond Hettinger Date: Sun, 18 Sep 2022 02:09:39 +0000 (-0500) Subject: Clarify that the expression is regular math notation, not Python. (#96903) X-Git-Tag: v3.12.0a1~393 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=670007abb45b76115377de1f2ff398be27685007;p=thirdparty%2FPython%2Fcpython.git Clarify that the expression is regular math notation, not Python. (#96903) --- diff --git a/Doc/library/math.rst b/Doc/library/math.rst index e338959ffbe4..96ada7d81bd2 100644 --- a/Doc/library/math.rst +++ b/Doc/library/math.rst @@ -45,8 +45,8 @@ Number-theoretic and representation functions to zero when ``k > n``. Also called the binomial coefficient because it is equivalent - to the coefficient of k-th term in polynomial expansion of the - expression ``(1 + x) ** n``. + to the coefficient of k-th term in polynomial expansion of + ``(1 + x)ⁿ``. Raises :exc:`TypeError` if either of the arguments are not integers. Raises :exc:`ValueError` if either of the arguments are negative.