Factor out stripping of interpreter debug output in test.support.strip_python_stderr()

This commit is contained in:
Antoine Pitrou 2010-08-04 11:48:56 +00:00
parent f96482e91a
commit 62f68ed31f
3 changed files with 13 additions and 3 deletions

View file

@ -53,7 +53,7 @@ class BaseTestCase(unittest.TestCase):
# In a debug build, stuff like "[6580 refs]" is printed to stderr at
# shutdown time. That frustrates tests trying to check stderr produced
# from a spawned Python process.
actual = re.sub("\[\d+ refs\]\r?\n?$", "", stderr.decode()).encode()
actual = support.strip_python_stderr(stderr)
self.assertEqual(actual, expected, msg)