diff options
author | Oren Milman <orenmn@gmail.com> | 2017-09-19 12:58:11 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2017-09-19 12:58:11 (GMT) |
commit | 865e4b4f630e2ae91e61239258abb58b488f1d65 (patch) | |
tree | 3c3ae126a58e5a9e7dddef58d305fc6faafad54e /Misc | |
parent | 9974e1bcf3d0cec9b38b39b39b7ec8a1ebd9ef54 (diff) | |
download | cpython-865e4b4f630e2ae91e61239258abb58b488f1d65.zip cpython-865e4b4f630e2ae91e61239258abb58b488f1d65.tar.gz cpython-865e4b4f630e2ae91e61239258abb58b488f1d65.tar.bz2 |
bpo-31293: Fix crashes in truediv and mul of a timedelta by a float with a bad as_integer_ratio() method. (#3227)
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. |