tenacity 9.0.0__py3-none-any.whl → 9.1.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- tenacity/__init__.py +4 -2
- tenacity/before_sleep.py +2 -2
- tenacity/retry.py +2 -2
- {tenacity-9.0.0.dist-info → tenacity-9.1.2.dist-info}/METADATA +10 -9
- {tenacity-9.0.0.dist-info → tenacity-9.1.2.dist-info}/RECORD +8 -8
- {tenacity-9.0.0.dist-info → tenacity-9.1.2.dist-info}/WHEEL +1 -1
- {tenacity-9.0.0.dist-info → tenacity-9.1.2.dist-info/licenses}/LICENSE +0 -0
- {tenacity-9.0.0.dist-info → tenacity-9.1.2.dist-info}/top_level.txt +0 -0
tenacity/__init__.py
CHANGED
|
@@ -76,7 +76,7 @@ from .before import before_nothing # noqa
|
|
|
76
76
|
from .after import after_log # noqa
|
|
77
77
|
from .after import after_nothing # noqa
|
|
78
78
|
|
|
79
|
-
# Import all built-in
|
|
79
|
+
# Import all built-in before sleep strategies for easier usage.
|
|
80
80
|
from .before_sleep import before_sleep_log # noqa
|
|
81
81
|
from .before_sleep import before_sleep_nothing # noqa
|
|
82
82
|
|
|
@@ -88,6 +88,8 @@ except ImportError:
|
|
|
88
88
|
if t.TYPE_CHECKING:
|
|
89
89
|
import types
|
|
90
90
|
|
|
91
|
+
from typing_extensions import Self
|
|
92
|
+
|
|
91
93
|
from . import asyncio as tasyncio
|
|
92
94
|
from .retry import RetryBaseT
|
|
93
95
|
from .stop import StopBaseT
|
|
@@ -255,7 +257,7 @@ class BaseRetrying(ABC):
|
|
|
255
257
|
retry_error_callback: t.Union[
|
|
256
258
|
t.Optional[t.Callable[["RetryCallState"], t.Any]], object
|
|
257
259
|
] = _unset,
|
|
258
|
-
) -> "
|
|
260
|
+
) -> "Self":
|
|
259
261
|
"""Copy this object with some parameters changed if needed."""
|
|
260
262
|
return self.__class__(
|
|
261
263
|
sleep=_first_set(sleep, self.sleep),
|
tenacity/before_sleep.py
CHANGED
|
@@ -25,7 +25,7 @@ if typing.TYPE_CHECKING:
|
|
|
25
25
|
|
|
26
26
|
|
|
27
27
|
def before_sleep_nothing(retry_state: "RetryCallState") -> None:
|
|
28
|
-
"""Before
|
|
28
|
+
"""Before sleep strategy that does nothing."""
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
def before_sleep_log(
|
|
@@ -33,7 +33,7 @@ def before_sleep_log(
|
|
|
33
33
|
log_level: int,
|
|
34
34
|
exc_info: bool = False,
|
|
35
35
|
) -> typing.Callable[["RetryCallState"], None]:
|
|
36
|
-
"""Before
|
|
36
|
+
"""Before sleep strategy that logs to some logger the attempt."""
|
|
37
37
|
|
|
38
38
|
def log_it(retry_state: "RetryCallState") -> None:
|
|
39
39
|
local_exc_info: BaseException | bool | None
|
tenacity/retry.py
CHANGED
|
@@ -207,7 +207,7 @@ class retry_if_exception_message(retry_if_exception):
|
|
|
207
207
|
def __init__(
|
|
208
208
|
self,
|
|
209
209
|
message: typing.Optional[str] = None,
|
|
210
|
-
match: typing.
|
|
210
|
+
match: typing.Union[None, str, typing.Pattern[str]] = None,
|
|
211
211
|
) -> None:
|
|
212
212
|
if message and match:
|
|
213
213
|
raise TypeError(
|
|
@@ -242,7 +242,7 @@ class retry_if_not_exception_message(retry_if_exception_message):
|
|
|
242
242
|
def __init__(
|
|
243
243
|
self,
|
|
244
244
|
message: typing.Optional[str] = None,
|
|
245
|
-
match: typing.
|
|
245
|
+
match: typing.Union[None, str, typing.Pattern[str]] = None,
|
|
246
246
|
) -> None:
|
|
247
247
|
super().__init__(message, match)
|
|
248
248
|
# invert predicate
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: tenacity
|
|
3
|
-
Version: 9.
|
|
3
|
+
Version: 9.1.2
|
|
4
4
|
Summary: Retry code until it succeeds
|
|
5
5
|
Home-page: https://github.com/jd/tenacity
|
|
6
6
|
Author: Julien Danjou
|
|
@@ -11,20 +11,21 @@ Classifier: License :: OSI Approved :: Apache Software License
|
|
|
11
11
|
Classifier: Programming Language :: Python
|
|
12
12
|
Classifier: Programming Language :: Python :: 3
|
|
13
13
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
14
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
15
14
|
Classifier: Programming Language :: Python :: 3.9
|
|
16
15
|
Classifier: Programming Language :: Python :: 3.10
|
|
17
16
|
Classifier: Programming Language :: Python :: 3.11
|
|
18
17
|
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
19
19
|
Classifier: Topic :: Utilities
|
|
20
|
-
Requires-Python: >=3.
|
|
20
|
+
Requires-Python: >=3.9
|
|
21
21
|
License-File: LICENSE
|
|
22
22
|
Provides-Extra: doc
|
|
23
|
-
Requires-Dist: reno
|
|
24
|
-
Requires-Dist: sphinx
|
|
23
|
+
Requires-Dist: reno; extra == "doc"
|
|
24
|
+
Requires-Dist: sphinx; extra == "doc"
|
|
25
25
|
Provides-Extra: test
|
|
26
|
-
Requires-Dist: pytest
|
|
27
|
-
Requires-Dist: tornado
|
|
28
|
-
Requires-Dist: typeguard
|
|
26
|
+
Requires-Dist: pytest; extra == "test"
|
|
27
|
+
Requires-Dist: tornado>=4.5; extra == "test"
|
|
28
|
+
Requires-Dist: typeguard; extra == "test"
|
|
29
|
+
Dynamic: license-file
|
|
29
30
|
|
|
30
31
|
Tenacity is a general-purpose retrying library to simplify the task of adding retry behavior to just about anything.
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
tenacity/__init__.py,sha256=
|
|
1
|
+
tenacity/__init__.py,sha256=LLTmuzCs-hqXeQSVlAig6GwSCj3V1PewC9-b3mTXn1g,24060
|
|
2
2
|
tenacity/_utils.py,sha256=5AwPoFrGOIfPkCtqeJdFBi7KKQNcJXJ3erbtGOXtn6w,2916
|
|
3
3
|
tenacity/after.py,sha256=NR4rGyslG7xF1hDJZb2Wf8wVApafX0HZwz2nFVLvaqE,1658
|
|
4
4
|
tenacity/before.py,sha256=7zDTpZ3b6rkY9sOdS-qbpjBgSjVr3xBqcIqdYAh9ZKM,1544
|
|
5
|
-
tenacity/before_sleep.py,sha256=
|
|
5
|
+
tenacity/before_sleep.py,sha256=J8emgLL-jkzbctXE7uzEUfCxWL4SKfGuOmilWowCP9c,2362
|
|
6
6
|
tenacity/nap.py,sha256=fRWvnz1aIzbIq9Ap3gAkAZgDH6oo5zxMrU6ZOVByq0I,1383
|
|
7
7
|
tenacity/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
-
tenacity/retry.py,sha256=
|
|
8
|
+
tenacity/retry.py,sha256=cZrAzWmMqAORKjmz9B1Pq2Kvn9GX2Znzs_3ybgvQwnE,9034
|
|
9
9
|
tenacity/stop.py,sha256=wQuwGfCLw8OH1C3x0G9lH9xtJCyhgviePQ40HRAUg54,4113
|
|
10
10
|
tenacity/tornadoweb.py,sha256=vS1ONfPYoGzPx1asQaVbfoo6D9tPIzSysJipm61Yqw8,2125
|
|
11
11
|
tenacity/wait.py,sha256=1oye0erAqJkSIysEQIfgtZXHunv7t31BwI2gHL1FsSk,8049
|
|
12
12
|
tenacity/asyncio/__init__.py,sha256=PoDGzHN-neTr2GgA1Ti3ORMrSmUIEUblbiSiuyxKHTI,7773
|
|
13
13
|
tenacity/asyncio/retry.py,sha256=ymu8F1JfAerc5vDO0V4-2kCvHXqyce2jpO1Nlt6aKxI,4244
|
|
14
|
-
tenacity-9.
|
|
15
|
-
tenacity-9.
|
|
16
|
-
tenacity-9.
|
|
17
|
-
tenacity-9.
|
|
18
|
-
tenacity-9.
|
|
14
|
+
tenacity-9.1.2.dist-info/licenses/LICENSE,sha256=WNHhf_5RCaeuKWyq_K39vmp9F28LxKsB4SpomwSZ2L0,11357
|
|
15
|
+
tenacity-9.1.2.dist-info/METADATA,sha256=1vPK9y_B7kDK-RNa33tdRKRRABFbTqkrgPGe0YOxV6U,1172
|
|
16
|
+
tenacity-9.1.2.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
17
|
+
tenacity-9.1.2.dist-info/top_level.txt,sha256=Zf8AOZMN7hr1EEcUo9U5KzXsM4TOC1pBZ22D8913JYs,9
|
|
18
|
+
tenacity-9.1.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|