diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2017-09-19 14:00:44 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2017-09-19 14:00:44 (GMT) |
commit | f37dd11f0d4832c15d49c2ddc83d533ddaa36e74 (patch) | |
tree | 44c1ef9d26aedc095e5820113bf0dfe8100aa324 /Misc | |
parent | 99a51d4e5b154a7b8d971090fecc1e34769a3ca1 (diff) | |
download | cpython-f37dd11f0d4832c15d49c2ddc83d533ddaa36e74.zip cpython-f37dd11f0d4832c15d49c2ddc83d533ddaa36e74.tar.gz cpython-f37dd11f0d4832c15d49c2ddc83d533ddaa36e74.tar.bz2 |
[3.6] bpo-31293: Fix crashes in truediv and mul of a timedelta by a float with a bad as_integer_ratio() method. (GH-3227) (#3654)
(cherry picked from commit 865e4b4f630e2ae91e61239258abb58b488f1d65)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2017-08-28-17-51-42.bpo-31293.eMYZXj.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2017-08-28-17-51-42.bpo-31293.eMYZXj.rst b/Misc/NEWS.d/next/Core and Builtins/2017-08-28-17-51-42.bpo-31293.eMYZXj.rst new file mode 100644 index 0000000..28b7bfb --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2017-08-28-17-51-42.bpo-31293.eMYZXj.rst @@ -0,0 +1,2 @@ +Fix crashes in true division and multiplication of a timedelta object by a +float with a bad as_integer_ratio() method. Patch by Oren Milman. |