source/lambda/boto_retry/__init__.py [295:307]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        self.max_wait = max_wait
        self.random_factor = random_factor
        self._val = start

    def __iter__(self):
        return self

    def __next__(self):
        """
        Returns next wait period
        :return: Next wait period
        """
        val = self._val
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



source/lambda/boto_retry/__init__.py [333:345]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        self.max_wait = max_wait
        self.random_factor = random_factor
        self._val = start

    def __iter__(self):
        return self

    def __next__(self):
        """
        Returns next wait period
        :return: Next wait period
        """
        val = self._val
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



