summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPablo Galindo <Pablogsal@gmail.com>2018-09-07 23:16:17 (GMT)
committerGitHub <noreply@github.com>2018-09-07 23:16:17 (GMT)
commitfa221d804f1bc07d992f820069bad24f176ed66d (patch)
treea958693f8b75fce92af3742bcbf06dbc451a6f4b
parent5b7a2cb5caeb7df68e637f45a98632cbc84a51bf (diff)
downloadcpython-fa221d804f1bc07d992f820069bad24f176ed66d.zip
cpython-fa221d804f1bc07d992f820069bad24f176ed66d.tar.gz
cpython-fa221d804f1bc07d992f820069bad24f176ed66d.tar.bz2
bpo-33083: Update "What's new" with math.factorial changes (GH-9109)
* Add elimination of non-int-like parameters in math.factorial to "What's new".
-rw-r--r--Doc/whatsnew/3.8.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst
index d07896b..2de7a50 100644
--- a/Doc/whatsnew/3.8.rst
+++ b/Doc/whatsnew/3.8.rst
@@ -272,6 +272,9 @@ 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`.)
+
CPython bytecode changes
------------------------