diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2010-01-19 08:25:26 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2010-01-19 08:25:26 (GMT) |
commit | 8926108bfbf0b5827d7ee2c863998793c3162f78 (patch) | |
tree | c8d83fd068240275aeeafd38292eb7a6e00a1642 | |
parent | 6b3573009a2b36950c4f1257d0ccd2a94f8cfd0d (diff) | |
download | cpython-8926108bfbf0b5827d7ee2c863998793c3162f78.zip cpython-8926108bfbf0b5827d7ee2c863998793c3162f78.tar.gz cpython-8926108bfbf0b5827d7ee2c863998793c3162f78.tar.bz2 |
Revert debugprint code in r77607.
-rw-r--r-- | Lib/test/test_hashlib.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/test/test_hashlib.py b/Lib/test/test_hashlib.py index 6defa19..b5fee51 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, |