diff --git a/swift/common/utils.py b/swift/common/utils.py index 0f04925307..9f3f5fd289 100644 --- a/swift/common/utils.py +++ b/swift/common/utils.py @@ -1081,6 +1081,7 @@ class RateLimitedIterator(object): self.running_time = ratelimit_sleep(self.running_time, self.elements_per_second) return next_value + __next__ = next class GreenthreadSafeIterator(object): @@ -1104,6 +1105,7 @@ class GreenthreadSafeIterator(object): def next(self): with self.semaphore: return next(self.unsafe_iter) + __next__ = next class NullLogger(object): @@ -1143,6 +1145,7 @@ class LoggerFileObject(object): def next(self): raise IOError(errno.EBADF, 'Bad file descriptor') + __next__ = next def read(self, size=-1): raise IOError(errno.EBADF, 'Bad file descriptor') @@ -2318,6 +2321,7 @@ class GreenAsyncPile(object): rv = self._responses.get() self._pending -= 1 return rv + __next__ = next class ModifiedParseResult(ParseResult): diff --git a/test/unit/common/test_utils.py b/test/unit/common/test_utils.py index 06565606f3..d697ce5d53 100644 --- a/test/unit/common/test_utils.py +++ b/test/unit/common/test_utils.py @@ -3801,6 +3801,7 @@ class UnsafeXrange(object): return val finally: self.concurrent_calls -= 1 + __next__ = next class TestAffinityKeyFunction(unittest.TestCase):