Skip to content

Commit

Permalink
Rename reject to retry
Browse files Browse the repository at this point in the history
Signed-off-by: Julien Danjou <[email protected]>
  • Loading branch information
jd committed Aug 18, 2016
1 parent f082fba commit 5b4fc5f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tenacity/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@
import six

# Import all built-in rejection strategies for easier usage.
from .reject import retry_always # noqa
from .reject import retry_any # noqa
from .reject import retry_if_exception # noqa
from .reject import retry_if_exception_type # noqa
from .reject import retry_if_result # noqa
from .reject import retry_never # noqa
from .retry import retry_always # noqa
from .retry import retry_any # noqa
from .retry import retry_if_exception # noqa
from .retry import retry_if_exception_type # noqa
from .retry import retry_if_result # noqa
from .retry import retry_never # noqa

# Import all built-in stop strategies for easier usage.
from .stop import stop_after_attempt # noqa
Expand Down
File renamed without changes.

0 comments on commit 5b4fc5f

Please sign in to comment.