summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorDong-hee Na <donghee.na92@gmail.com>2020-01-10 16:31:43 (GMT)
committerVictor Stinner <vstinner@python.org>2020-01-10 16:31:43 (GMT)
commitabdc634f337ce4943cd7d13587936837aac2ecc9 (patch)
tree1cd9642117077a38a913992b7c287002f7a22485 /Misc/NEWS.d
parentc39b52f1527868c7ada9385669c38edf98858921 (diff)
downloadcpython-abdc634f337ce4943cd7d13587936837aac2ecc9.zip
cpython-abdc634f337ce4943cd7d13587936837aac2ecc9.tar.gz
cpython-abdc634f337ce4943cd7d13587936837aac2ecc9.tar.bz2
bpo-39200: Correct the error message for min/max builtin function (GH-17814)
Correct the error message when calling the min() or max() with no arguments.
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2020-01-04-01-14-32.bpo-39200.8Z9DYp.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-01-04-01-14-32.bpo-39200.8Z9DYp.rst b/Misc/NEWS.d/next/Core and Builtins/2020-01-04-01-14-32.bpo-39200.8Z9DYp.rst
new file mode 100644
index 0000000..71e4072
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2020-01-04-01-14-32.bpo-39200.8Z9DYp.rst
@@ -0,0 +1,2 @@
+Correct the error message when calling the :func:`min` or :func:`max` with
+no arguments. Patch by Dong-hee Na.