summaryrefslogtreecommitdiff
path: root/Lib/unittest/suite.py
diff options
context:
space:
mode:
authorTim Peters <tim@python.org>2013-08-31 23:44:34 -0500
committerTim Peters <tim@python.org>2013-08-31 23:44:34 -0500
commit59360aadd31f9bdd4e018ad8acb8f06ece5423a6 (patch)
tree7fd4ee13653a4f3077fc65dd484fae47703abb24 /Lib/unittest/suite.py
parent6c3c1ccd1bcd098681ec2c687caf4c849b1b0374 (diff)
downloadcpython-git-59360aadd31f9bdd4e018ad8acb8f06ece5423a6.tar.gz
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 ;-)
Diffstat (limited to 'Lib/unittest/suite.py')
-rw-r--r--Lib/unittest/suite.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/unittest/suite.py b/Lib/unittest/suite.py
index e7b8b4a9fd..176af57fb0 100644
--- a/Lib/unittest/suite.py
+++ b/Lib/unittest/suite.py
@@ -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: