commit | 92df7529cb6c863d0fcd3247829b24833f62e285 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Sun May 25 17:40:25 2014 -0700 |
committer | Raymond Hettinger <python@rcn.com> | Sun May 25 17:40:25 2014 -0700 |
tree | f1983c544736eaeda03ec426ba8000f65d011bbe | |
parent | 1f94efc6265c77e9b45058a88eb86f8d49c2c7c7 [diff] [blame] |
Issue 13355: Make random.triangular degrade gracefully when low == high.
diff --git a/Misc/NEWS b/Misc/NEWS index d46d1d3..04e9221 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -23,6 +23,9 @@ - Issue #19925: Added tests for the spwd module. Original patch by Vajrasky Kok. +- Issue #13355: random.triangular() no longer fails with a ZeroDivisionError + when low equals high. + - Issue #21522: Added Tkinter tests for Listbox.itemconfigure(), PanedWindow.paneconfigure(), and Menu.entryconfigure().