diff options
author | Brian Schubert <brianm.schubert@gmail.com> | 2024-02-19 18:18:38 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-19 18:18:38 (GMT) |
commit | 773d53d3c130d2c2ae1dcbaff08adea81910b343 (patch) | |
tree | 01db1dab1e6df84980a862b745f4b54f0e60866b /Doc/library/math.rst | |
parent | a08be89212ecd739c7582bdd5861e2ea3809ac3f (diff) | |
download | cpython-773d53d3c130d2c2ae1dcbaff08adea81910b343.zip cpython-773d53d3c130d2c2ae1dcbaff08adea81910b343.tar.gz cpython-773d53d3c130d2c2ae1dcbaff08adea81910b343.tar.bz2 |
[3.12] gh-115664: Fix chronological ordering of versionadded and versionchanged directives (GH-115676) (#115678)
Diffstat (limited to 'Doc/library/math.rst')
-rw-r--r-- | Doc/library/math.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/math.rst b/Doc/library/math.rst index 9e58b55..55a5740 100644 --- a/Doc/library/math.rst +++ b/Doc/library/math.rst @@ -239,11 +239,11 @@ Number-theoretic and representation functions See also :func:`math.ulp`. + .. versionadded:: 3.9 + .. versionchanged:: 3.12 Added the *steps* argument. - .. versionadded:: 3.9 - .. function:: perm(n, k=None) Return the number of ways to choose *k* items from *n* items @@ -680,11 +680,11 @@ Constants >>> math.isnan(float('nan')) True + .. versionadded:: 3.5 + .. versionchanged:: 3.11 It is now always available. - .. versionadded:: 3.5 - .. impl-detail:: |