mirror of
https://github.com/python/cpython.git
synced 2025-08-31 14:07:50 +00:00
GH-90829: Fix empty iterable error message in min/max (#31181)
This commit is contained in:
parent
b034fd3e59
commit
0741da8d28
2 changed files with 11 additions and 3 deletions
|
@ -1155,7 +1155,11 @@ class BuiltinTest(unittest.TestCase):
|
|||
max()
|
||||
|
||||
self.assertRaises(TypeError, max, 42)
|
||||
self.assertRaises(ValueError, max, ())
|
||||
with self.assertRaisesRegex(
|
||||
ValueError,
|
||||
r'max\(\) iterable argument is empty'
|
||||
):
|
||||
max(())
|
||||
class BadSeq:
|
||||
def __getitem__(self, index):
|
||||
raise ValueError
|
||||
|
@ -1214,7 +1218,11 @@ class BuiltinTest(unittest.TestCase):
|
|||
min()
|
||||
|
||||
self.assertRaises(TypeError, min, 42)
|
||||
self.assertRaises(ValueError, min, ())
|
||||
with self.assertRaisesRegex(
|
||||
ValueError,
|
||||
r'min\(\) iterable argument is empty'
|
||||
):
|
||||
min(())
|
||||
class BadSeq:
|
||||
def __getitem__(self, index):
|
||||
raise ValueError
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue