[Python-checkins] cpython: Back out 868ad6fa8e68 - it left all the buildbots failing.

tim.peters python-checkins at python.org
Sun Sep 1 06:45:01 CEST 2013


http://hg.python.org/cpython/rev/7035b5d8fc0f
changeset:   85489:7035b5d8fc0f
user:        Tim Peters <tim at python.org>
date:        Sat Aug 31 23:44:34 2013 -0500
summary:
  Back out 868ad6fa8e68 - it left all the buildbots failing.

Unclear to me why it was pushed to begin with.  See issue 11798.
Perhaps it's because regrtest with -R was failing?  Fine, but
that's better than regrtest _always_ failing ;-)

files:
  Lib/unittest/suite.py |  1 -
  1 files changed, 0 insertions(+), 1 deletions(-)


diff --git a/Lib/unittest/suite.py b/Lib/unittest/suite.py
--- a/Lib/unittest/suite.py
+++ b/Lib/unittest/suite.py
@@ -66,7 +66,6 @@
 
     def _removeTestAtIndex(self, index):
         """Stop holding a reference to the TestCase at index."""
-        return
         try:
             self._tests[index] = None
         except TypeError:

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list