diff --git a/Lib/random.py b/Lib/random.py index 49b0f149a5a..ad1c9167b02 100644 --- a/Lib/random.py +++ b/Lib/random.py @@ -254,7 +254,7 @@ class Random(_random.Random): try: i = self._randbelow(len(seq)) except ValueError: - raise IndexError('Cannot choose from an empty sequence') + raise IndexError('Cannot choose from an empty sequence') from None return seq[i] def shuffle(self, x, random=None): diff --git a/Misc/NEWS b/Misc/NEWS index 76a84119898..84a6c4e6b71 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -714,6 +714,9 @@ Library - Issue 28923: Remove editor artifacts from Tix.py. +- Issue #29055: Neaten-up empty population error on random.choice() + by suppressing the upstream exception. + - Issue #28871: Fixed a crash when deallocate deep ElementTree. - Issue #19542: Fix bugs in WeakValueDictionary.setdefault() and