summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2014-01-31 17:04:36 (GMT)
committerBrett Cannon <brett@python.org>2014-01-31 17:04:36 (GMT)
commit1088d988996dd8c63a73a5139173627320d74405 (patch)
tree64ffc6979cc71c90e410abd4fecff9bbd58f05e0 /Misc/NEWS
parent62510dced9e8242224ce3d45388eff6486e83c3c (diff)
downloadcpython-1088d988996dd8c63a73a5139173627320d74405.zip
cpython-1088d988996dd8c63a73a5139173627320d74405.tar.gz
cpython-1088d988996dd8c63a73a5139173627320d74405.tar.bz2
The function name for cmath.isinf in PyArg_ParseTuple() was wrong.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 579c37a..fa2968b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,8 @@ Core and Builtins
Library
-------
+- Fixed cmath.isinf's name in its argument parsing code.
+
- Issue #20311, #20452: poll and epoll now round the timeout away from zero,
instead of rounding towards zero, in select and selectors modules:
select.epoll.poll(), selectors.PollSelector.poll() and