mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Make the tests succeed with -Qnew: Do not rely on the exact wording of a ZeroDivisionError.
This commit is contained in:
parent
f871270c92
commit
240ec6b9ef
1 changed files with 4 additions and 6 deletions
|
@ -51,16 +51,14 @@ class CallbackTracbackTestCase(unittest.TestCase):
|
|||
def test_IntegerDivisionError(self):
|
||||
cb = CFUNCTYPE(c_int, c_int)(callback_func)
|
||||
out = self.capture_stderr(cb, 0)
|
||||
self.failUnlessEqual(out.splitlines()[-1],
|
||||
"ZeroDivisionError: "
|
||||
"integer division or modulo by zero")
|
||||
self.failUnlessEqual(out.splitlines()[-1][:19],
|
||||
"ZeroDivisionError: ")
|
||||
|
||||
def test_FloatDivisionError(self):
|
||||
cb = CFUNCTYPE(c_int, c_double)(callback_func)
|
||||
out = self.capture_stderr(cb, 0.0)
|
||||
self.failUnlessEqual(out.splitlines()[-1],
|
||||
"ZeroDivisionError: "
|
||||
"float division")
|
||||
self.failUnlessEqual(out.splitlines()[-1][:19],
|
||||
"ZeroDivisionError: ")
|
||||
|
||||
def test_TypeErrorDivisionError(self):
|
||||
cb = CFUNCTYPE(c_int, c_char_p)(callback_func)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue