diff options
author | Tim Peters <tim@python.org> | 2013-09-01 04:44:34 (GMT) |
---|---|---|
committer | Tim Peters <tim@python.org> | 2013-09-01 04:44:34 (GMT) |
commit | 59360aadd31f9bdd4e018ad8acb8f06ece5423a6 (patch) | |
tree | 7fd4ee13653a4f3077fc65dd484fae47703abb24 /Lib | |
parent | 6c3c1ccd1bcd098681ec2c687caf4c849b1b0374 (diff) | |
download | cpython-59360aadd31f9bdd4e018ad8acb8f06ece5423a6.zip cpython-59360aadd31f9bdd4e018ad8acb8f06ece5423a6.tar.gz cpython-59360aadd31f9bdd4e018ad8acb8f06ece5423a6.tar.bz2 |
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')
-rw-r--r-- | Lib/unittest/suite.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/unittest/suite.py b/Lib/unittest/suite.py index e7b8b4a..176af57 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: |