[Python-checkins] r77609 - python/trunk/Lib/test/test_hashlib.py

gregory.p.smith python-checkins at python.org
Tue Jan 19 09:25:26 CET 2010


Author: gregory.p.smith
Date: Tue Jan 19 09:25:26 2010
New Revision: 77609

Log:
Revert debugprint code in r77607.


Modified:
   python/trunk/Lib/test/test_hashlib.py

Modified: python/trunk/Lib/test/test_hashlib.py
==============================================================================
--- python/trunk/Lib/test/test_hashlib.py	(original)
+++ python/trunk/Lib/test/test_hashlib.py	Tue Jan 19 09:25:26 2010
@@ -140,10 +140,6 @@
         # 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,


More information about the Python-checkins mailing list