dycw-utilities 0.125.22__py3-none-any.whl → 0.125.23__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.
- {dycw_utilities-0.125.22.dist-info → dycw_utilities-0.125.23.dist-info}/METADATA +1 -1
- {dycw_utilities-0.125.22.dist-info → dycw_utilities-0.125.23.dist-info}/RECORD +6 -6
- utilities/__init__.py +1 -1
- utilities/asyncio.py +4 -0
- {dycw_utilities-0.125.22.dist-info → dycw_utilities-0.125.23.dist-info}/WHEEL +0 -0
- {dycw_utilities-0.125.22.dist-info → dycw_utilities-0.125.23.dist-info}/licenses/LICENSE +0 -0
@@ -1,6 +1,6 @@
|
|
1
|
-
utilities/__init__.py,sha256=
|
1
|
+
utilities/__init__.py,sha256=wPKNBX6ygqFYs-IuHSilaZXm0vMIdcuqBGP9j1b_5O8,61
|
2
2
|
utilities/altair.py,sha256=Gpja-flOo-Db0PIPJLJsgzAlXWoKUjPU1qY-DQ829ek,9156
|
3
|
-
utilities/asyncio.py,sha256=
|
3
|
+
utilities/asyncio.py,sha256=wtMOjHG85exqdwVBNH-DazTprkUCvMFv-JgY-9REhYs,51259
|
4
4
|
utilities/atomicwrites.py,sha256=geFjn9Pwn-tTrtoGjDDxWli9NqbYfy3gGL6ZBctiqSo,5393
|
5
5
|
utilities/atools.py,sha256=IYMuFSFGSKyuQmqD6v5IUtDlz8PPw0Sr87Cub_gRU3M,1168
|
6
6
|
utilities/cachetools.py,sha256=C1zqOg7BYz0IfQFK8e3qaDDgEZxDpo47F15RTfJM37Q,2910
|
@@ -90,7 +90,7 @@ utilities/warnings.py,sha256=un1LvHv70PU-LLv8RxPVmugTzDJkkGXRMZTE2-fTQHw,1771
|
|
90
90
|
utilities/whenever.py,sha256=jS31ZAY5OMxFxLja_Yo5Fidi87Pd-GoVZ7Vi_teqVDA,16743
|
91
91
|
utilities/zipfile.py,sha256=24lQc9ATcJxHXBPc_tBDiJk48pWyRrlxO2fIsFxU0A8,699
|
92
92
|
utilities/zoneinfo.py,sha256=-5j7IQ9nb7gR43rdgA7ms05im-XuqhAk9EJnQBXxCoQ,1874
|
93
|
-
dycw_utilities-0.125.
|
94
|
-
dycw_utilities-0.125.
|
95
|
-
dycw_utilities-0.125.
|
96
|
-
dycw_utilities-0.125.
|
93
|
+
dycw_utilities-0.125.23.dist-info/METADATA,sha256=sTzpB8MuDKbN3vHMg9otGuFDqzQ6Ko-_iYSb_9W94QY,12852
|
94
|
+
dycw_utilities-0.125.23.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
95
|
+
dycw_utilities-0.125.23.dist-info/licenses/LICENSE,sha256=gppZp16M6nSVpBbUBrNL6JuYfvKwZiKgV7XoKKsHzqo,1066
|
96
|
+
dycw_utilities-0.125.23.dist-info/RECORD,,
|
utilities/__init__.py
CHANGED
utilities/asyncio.py
CHANGED
@@ -895,6 +895,8 @@ class Looper(Generic[_T]):
|
|
895
895
|
backoff: Duration | Sentinel = sentinel,
|
896
896
|
logger: str | None | Sentinel = sentinel,
|
897
897
|
timeout: Duration | None | Sentinel = sentinel,
|
898
|
+
timeout_error: type[Exception] | Sentinel = sentinel,
|
899
|
+
_debug: bool | Sentinel = sentinel,
|
898
900
|
) -> Self:
|
899
901
|
"""Replace elements of the looper."""
|
900
902
|
return replace_non_sentinel(
|
@@ -904,6 +906,8 @@ class Looper(Generic[_T]):
|
|
904
906
|
backoff=backoff,
|
905
907
|
logger=logger,
|
906
908
|
timeout=timeout,
|
909
|
+
timeout_error=timeout_error,
|
910
|
+
_debug=_debug,
|
907
911
|
)
|
908
912
|
|
909
913
|
def request_restart(self) -> None:
|
File without changes
|
File without changes
|