From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sun, 18 Sep 2022 03:01:12 +0000 (-0700) Subject: Clarify that the expression is regular math notation, not Python. (GH-96903) (GH... X-Git-Tag: v3.11.0~43 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a955cccf7ac78231ca3766f7ca0cfcbb5768a413;p=thirdparty%2FPython%2Fcpython.git Clarify that the expression is regular math notation, not Python. (GH-96903) (GH-96908) --- diff --git a/Doc/library/math.rst b/Doc/library/math.rst index 6d9a992f7313..8d48656d41eb 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.