From: Michael Foord Date: Sun, 7 Mar 2010 23:16:20 +0000 (+0000) Subject: Remove accidental print statement from last commit. X-Git-Tag: v2.7b1~422 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=08611b5e559188c20cfca70de0fa5975857994b0;p=python Remove accidental print statement from last commit. --- diff --git a/Lib/unittest/case.py b/Lib/unittest/case.py index f5dc87baf4..ea8fefa833 100644 --- a/Lib/unittest/case.py +++ b/Lib/unittest/case.py @@ -820,7 +820,6 @@ class TestCase(object): if unexpected: errors.append('Unexpected, but present:\n %s' % safe_repr(unexpected)) - print 'errors', errors if errors: standardMsg = '\n'.join(errors) self.fail(self._formatMessage(msg, standardMsg))