summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorMark Dickinson <mdickinson@enthought.com>2019-06-01 11:21:53 (GMT)
committerGitHub <noreply@github.com>2019-06-01 11:21:53 (GMT)
commita0adffb90287900a9e2c809ce2c1bbe481ac7dd0 (patch)
treeb1935c97b5e2150d4dc11bf59d6ed7fcf306bec5 /Doc
parent6b282e18877ec84e927b381b4ce187eaf4ba3dd7 (diff)
downloadcpython-a0adffb90287900a9e2c809ce2c1bbe481ac7dd0.zip
cpython-a0adffb90287900a9e2c809ce2c1bbe481ac7dd0.tar.gz
cpython-a0adffb90287900a9e2c809ce2c1bbe481ac7dd0.tar.bz2
Move whats-new entry for math.factorial to the math module section. (GH-13723)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/whatsnew/3.8.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst
index bc7c9ef..2d52911 100644
--- a/Doc/whatsnew/3.8.rst
+++ b/Doc/whatsnew/3.8.rst
@@ -460,6 +460,9 @@ numbers. (Contributed by Pablo Galindo in :issue:`35606`)
Added new function :func:`math.isqrt` for computing integer square roots.
(Contributed by Mark Dickinson in :issue:`36887`.)
+The function :func:`math.factorial` no longer accepts arguments that are not
+int-like. (Contributed by Pablo Galindo in :issue:`33083`.)
+
mmap
----
@@ -1140,9 +1143,6 @@ Changes in the Python API
success; an exception was raised on error under Unix.
(Contributed by Berker Peksag in :issue:`2122`.)
-* The function :func:`math.factorial` no longer accepts arguments that are not
- int-like. (Contributed by Pablo Galindo in :issue:`33083`.)
-
* :mod:`xml.dom.minidom` and :mod:`xml.sax` modules no longer process
external entities by default.
(Contributed by Christian Heimes in :issue:`17239`.)