dycw-utilities 0.114.5__py3-none-any.whl → 0.114.6__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.114.5.dist-info → dycw_utilities-0.114.6.dist-info}/METADATA +1 -1
- {dycw_utilities-0.114.5.dist-info → dycw_utilities-0.114.6.dist-info}/RECORD +6 -6
- utilities/__init__.py +1 -1
- utilities/asyncio.py +4 -4
- {dycw_utilities-0.114.5.dist-info → dycw_utilities-0.114.6.dist-info}/WHEEL +0 -0
- {dycw_utilities-0.114.5.dist-info → dycw_utilities-0.114.6.dist-info}/licenses/LICENSE +0 -0
@@ -1,7 +1,7 @@
|
|
1
|
-
utilities/__init__.py,sha256=
|
1
|
+
utilities/__init__.py,sha256=tsYuJeSJY0N2Azm2GNEdQ3CJGral9P44WehpNjApPR0,60
|
2
2
|
utilities/altair.py,sha256=Gpja-flOo-Db0PIPJLJsgzAlXWoKUjPU1qY-DQ829ek,9156
|
3
3
|
utilities/astor.py,sha256=xuDUkjq0-b6fhtwjhbnebzbqQZAjMSHR1IIS5uOodVg,777
|
4
|
-
utilities/asyncio.py,sha256=
|
4
|
+
utilities/asyncio.py,sha256=zz8W_35vp3u7N4rRahr82HmBnq6uXWgJe8XW8KgXh6w,21507
|
5
5
|
utilities/atomicwrites.py,sha256=geFjn9Pwn-tTrtoGjDDxWli9NqbYfy3gGL6ZBctiqSo,5393
|
6
6
|
utilities/atools.py,sha256=IYMuFSFGSKyuQmqD6v5IUtDlz8PPw0Sr87Cub_gRU3M,1168
|
7
7
|
utilities/cachetools.py,sha256=C1zqOg7BYz0IfQFK8e3qaDDgEZxDpo47F15RTfJM37Q,2910
|
@@ -87,7 +87,7 @@ utilities/warnings.py,sha256=un1LvHv70PU-LLv8RxPVmugTzDJkkGXRMZTE2-fTQHw,1771
|
|
87
87
|
utilities/whenever.py,sha256=iLRP_-8CZtBpHKbGZGu-kjSMg1ZubJ-VSmgSy7Eudxw,17787
|
88
88
|
utilities/zipfile.py,sha256=24lQc9ATcJxHXBPc_tBDiJk48pWyRrlxO2fIsFxU0A8,699
|
89
89
|
utilities/zoneinfo.py,sha256=-Xm57PMMwDTYpxJdkiJG13wnbwK--I7XItBh5WVhD-o,1874
|
90
|
-
dycw_utilities-0.114.
|
91
|
-
dycw_utilities-0.114.
|
92
|
-
dycw_utilities-0.114.
|
93
|
-
dycw_utilities-0.114.
|
90
|
+
dycw_utilities-0.114.6.dist-info/METADATA,sha256=Bdrv-QtLXNjCfRIkLbQN192NUfqoMmn7uECg_NTm4Vs,12943
|
91
|
+
dycw_utilities-0.114.6.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
92
|
+
dycw_utilities-0.114.6.dist-info/licenses/LICENSE,sha256=gppZp16M6nSVpBbUBrNL6JuYfvKwZiKgV7XoKKsHzqo,1066
|
93
|
+
dycw_utilities-0.114.6.dist-info/RECORD,,
|
utilities/__init__.py
CHANGED
utilities/asyncio.py
CHANGED
@@ -400,9 +400,9 @@ class InfiniteLooper(ABC, Generic[THashable]):
|
|
400
400
|
"""Handle any errors upon initializing the looper."""
|
401
401
|
if self.logger is not None:
|
402
402
|
getLogger(name=self.logger).error(
|
403
|
-
"Error initializing %r due to %
|
403
|
+
"Error initializing %r due to %r; sleeping for %s...",
|
404
404
|
get_class_name(self),
|
405
|
-
error,
|
405
|
+
repr(error),
|
406
406
|
self.sleep_restart,
|
407
407
|
)
|
408
408
|
|
@@ -410,9 +410,9 @@ class InfiniteLooper(ABC, Generic[THashable]):
|
|
410
410
|
"""Handle any errors upon running the core function."""
|
411
411
|
if self.logger is not None:
|
412
412
|
getLogger(name=self.logger).error(
|
413
|
-
"Error running
|
413
|
+
"Error running %r due to %r; sleeping for %s...",
|
414
414
|
get_class_name(self),
|
415
|
-
error,
|
415
|
+
repr(error),
|
416
416
|
self.sleep_restart,
|
417
417
|
)
|
418
418
|
|
File without changes
|
File without changes
|