diff options
author | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2015-02-28 15:41:57 (GMT) |
---|---|---|
committer | Alexander Belopolsky <alexander.belopolsky@gmail.com> | 2015-02-28 15:41:57 (GMT) |
commit | 24d3deefcf2f78b12fc29ed4c9a3811d46c534bb (patch) | |
tree | b5f0821a0f1f9bdef43fc1163b821f1a9c7ad7fb /Misc | |
parent | cf265fd02a0daacfa026b774a6eb2d7732b544a4 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |