[Python-checkins] r75522 - python/branches/py3k/Lib/test/regrtest.py

r.david.murray python-checkins at python.org
Mon Oct 19 18:15:23 CEST 2009


Author: r.david.murray
Date: Mon Oct 19 18:15:22 2009
New Revision: 75522

Log:
The stdout from tests is no longer compared against anything (not even
to make sure it is empty), so eliminate the message that says running
under verbose is different from running without it.


Modified:
   python/branches/py3k/Lib/test/regrtest.py

Modified: python/branches/py3k/Lib/test/regrtest.py
==============================================================================
--- python/branches/py3k/Lib/test/regrtest.py	(original)
+++ python/branches/py3k/Lib/test/regrtest.py	Mon Oct 19 18:15:22 2009
@@ -548,9 +548,6 @@
         if not bad and not skipped and len(good) > 1:
             print("All", end=' ')
         print(count(len(good), "test"), "OK.")
-        if verbose:
-            print("CAUTION:  stdout isn't compared in verbose mode:")
-            print("a test that passes in verbose mode may fail without it.")
     if print_slow:
         test_times.sort(reverse=True)
         print("10 slowest tests:")


More information about the Python-checkins mailing list