From: Gregory P. Smith Date: Tue, 19 Jan 2010 08:25:26 +0000 (+0000) Subject: Revert debugprint code in r77607. X-Git-Tag: v2.7a3~117 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8926108bfbf0b5827d7ee2c863998793c3162f78;p=thirdparty%2FPython%2Fcpython.git Revert debugprint code in r77607. --- diff --git a/Lib/test/test_hashlib.py b/Lib/test/test_hashlib.py index 6defa197cfa9..b5fee5151a51 100644 --- a/Lib/test/test_hashlib.py +++ b/Lib/test/test_hashlib.py @@ -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,