]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Temporary disable tests cleanup (issue 11798).
authorAndrew Svetlov <andrew.svetlov@gmail.com>
Sat, 31 Aug 2013 17:55:25 +0000 (20:55 +0300)
committerAndrew Svetlov <andrew.svetlov@gmail.com>
Sat, 31 Aug 2013 17:55:25 +0000 (20:55 +0300)
Lib/unittest/suite.py

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