mirror of
https://github.com/python/cpython.git
synced 2025-08-31 14:07:50 +00:00
bpo-34127: Fix grammar in error message with respect to argument count (GH-8395)
This commit is contained in:
parent
c75c1e0e8a
commit
1426daa4fe
3 changed files with 22 additions and 4 deletions
|
@ -143,6 +143,22 @@ class CFunctionCallsErrorMessages(unittest.TestCase):
|
|||
msg = r"^from_bytes\(\) takes at most 2 positional arguments \(3 given\)"
|
||||
self.assertRaisesRegex(TypeError, msg, int.from_bytes, b'a', 'little', False)
|
||||
|
||||
def test_varargs4(self):
|
||||
msg = r"get expected at least 1 argument, got 0"
|
||||
self.assertRaisesRegex(TypeError, msg, {}.get)
|
||||
|
||||
def test_varargs5(self):
|
||||
msg = r"getattr expected at least 2 arguments, got 0"
|
||||
self.assertRaisesRegex(TypeError, msg, getattr)
|
||||
|
||||
def test_varargs6(self):
|
||||
msg = r"input expected at most 1 argument, got 2"
|
||||
self.assertRaisesRegex(TypeError, msg, input, 1, 2)
|
||||
|
||||
def test_varargs7(self):
|
||||
msg = r"get expected at most 2 arguments, got 3"
|
||||
self.assertRaisesRegex(TypeError, msg, {}.get, 1, 2, 3)
|
||||
|
||||
def test_varargs1_kw(self):
|
||||
msg = r"__contains__\(\) takes no keyword arguments"
|
||||
self.assertRaisesRegex(TypeError, msg, {}.__contains__, x=2)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue