summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>2015-02-28 15:41:57 (GMT)
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>2015-02-28 15:41:57 (GMT)
commit24d3deefcf2f78b12fc29ed4c9a3811d46c534bb (patch)
treeb5f0821a0f1f9bdef43fc1163b821f1a9c7ad7fb /Misc
parentcf265fd02a0daacfa026b774a6eb2d7732b544a4 (diff)
downloadcpython-24d3deefcf2f78b12fc29ed4c9a3811d46c534bb.zip
cpython-24d3deefcf2f78b12fc29ed4c9a3811d46c534bb.tar.gz
cpython-24d3deefcf2f78b12fc29ed4c9a3811d46c534bb.tar.bz2
Fixes #23521: Corrected pure python implementation of timedelta division.
* Eliminated OverflowError from timedelta * float for some floats; * Corrected rounding in timedlta true division.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 05fde70..c3f5154 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,10 @@ Core and Builtins
Library
-------
+- Issue #23521: Corrected pure python implementation of timedelta division.
+
+ * Eliminated OverflowError from timedelta * float for some floats;
+ * Corrected rounding in timedlta true division.
- Issue #21619: Popen objects no longer leave a zombie after exit in the with
statement if the pipe was broken. Patch by Martin Panter.