summaryrefslogtreecommitdiffstats
path: root/Lib/unittest/case.py
diff options
context:
space:
mode:
authorMichael Foord <fuzzyman@voidspace.org.uk>2010-03-07 23:16:20 (GMT)
committerMichael Foord <fuzzyman@voidspace.org.uk>2010-03-07 23:16:20 (GMT)
commit08611b5e559188c20cfca70de0fa5975857994b0 (patch)
tree245421be342d3479053eb6fbeec1f982b0ede352 /Lib/unittest/case.py
parenta715255a27571d06eb9811221e69f6511f62bde7 (diff)
downloadcpython-08611b5e559188c20cfca70de0fa5975857994b0.zip
cpython-08611b5e559188c20cfca70de0fa5975857994b0.tar.gz
cpython-08611b5e559188c20cfca70de0fa5975857994b0.tar.bz2
Remove accidental print statement from last commit.
Diffstat (limited to 'Lib/unittest/case.py')
-rw-r--r--Lib/unittest/case.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/unittest/case.py b/Lib/unittest/case.py
index f5dc87b..ea8fefa 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))