]> granicus.if.org Git - python/commitdiff
Back out 868ad6fa8e68 - it left all the buildbots failing.
authorTim Peters <tim@python.org>
Sun, 1 Sep 2013 04:44:34 +0000 (23:44 -0500)
committerTim Peters <tim@python.org>
Sun, 1 Sep 2013 04:44:34 +0000 (23:44 -0500)
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 ;-)

Lib/unittest/suite.py

index e7b8b4a9fd8d1575c0c41bd680da67478476a507..176af57fb0bdf396d6c35768a383cf214c77c010 100644 (file)
@@ -66,7 +66,6 @@ class BaseTestSuite(object):
 
     def _removeTestAtIndex(self, index):
         """Stop holding a reference to the TestCase at index."""
-        return
         try:
             self._tests[index] = None
         except TypeError: