]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Revert debugprint code in r77607.
authorGregory P. Smith <greg@mad-scientist.com>
Tue, 19 Jan 2010 08:25:26 +0000 (08:25 +0000)
committerGregory P. Smith <greg@mad-scientist.com>
Tue, 19 Jan 2010 08:25:26 +0000 (08:25 +0000)
Lib/test/test_hashlib.py

index 6defa197cfa9749e0e41a6cea444bca6abd3e924..b5fee5151a5197159776df4bbd0a6ac14222b5f8 100644 (file)
@@ -140,10 +140,6 @@ class HashLibTestCase(unittest.TestCase):
         # 2 is for hashlib.name(...) and hashlib.new(name, ...)
         self.assertGreaterEqual(len(constructors), 2)
         for hash_object_constructor in constructors:
-            if COMPILED_WITH_PYDEBUG:
-                # XXX(gps): This is temporary to debug a buildbot failure.
-                #  http://www.python.org/dev/buildbot/all/builders/x86%20gentoo%20trunk/builds/5700/
-                print "test_hashlib check calling", hash_object_constructor
             computed = hash_object_constructor(data).hexdigest()
             self.assertEqual(
                     computed, digest,