summaryrefslogtreecommitdiffstats
path: root/Lib/unittest
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-12-10 11:53:56 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-12-10 11:53:56 (GMT)
commit184ec79bd3d13ca4e07b8056b7de66c03c4c792f (patch)
tree7889477a2676ab7cc69966ba3278e43f60599eb9 /Lib/unittest
parent1f609e9b0228dbc8743913d5081a961f9700cab0 (diff)
downloadcpython-184ec79bd3d13ca4e07b8056b7de66c03c4c792f.zip
cpython-184ec79bd3d13ca4e07b8056b7de66c03c4c792f.tar.gz
cpython-184ec79bd3d13ca4e07b8056b7de66c03c4c792f.tar.bz2
Remove commented out debugging code (remnants of issue #18996).
Diffstat (limited to 'Lib/unittest')
-rw-r--r--Lib/unittest/test/test_case.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/unittest/test/test_case.py b/Lib/unittest/test/test_case.py
index 658d23d..363390a 100644
--- a/Lib/unittest/test/test_case.py
+++ b/Lib/unittest/test/test_case.py
@@ -876,8 +876,6 @@ class Test_TestCase(unittest.TestCase, TestEquality, TestHashing):
with self.assertRaises(self.failureException) as cm:
self.assertEqual(s1, s2)
c = 'xxxx[85 chars]xxxxxxxxxxx'
- #print()
- #print(str(cm.exception))
self.assertEqual(str(cm.exception), "'%sa%s' != '%sb%s'" % (c, p, c, p))
p = 'y' * 100