ez-a-sync 0.32.19__cp39-cp39-macosx_11_0_arm64.whl → 0.32.21__cp39-cp39-macosx_11_0_arm64.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.
Potentially problematic release.
This version of ez-a-sync might be problematic. Click here for more details.
- a_sync/__init__.py +1 -0
- a_sync/_smart.cpython-39-darwin.so +0 -0
- a_sync/a_sync/_descriptor.cpython-39-darwin.so +0 -0
- a_sync/a_sync/_flags.cpython-39-darwin.so +0 -0
- a_sync/a_sync/_helpers.cpython-39-darwin.so +0 -0
- a_sync/a_sync/_kwargs.cpython-39-darwin.so +0 -0
- a_sync/a_sync/abstract.cpython-39-darwin.so +0 -0
- a_sync/a_sync/base.cpython-39-darwin.so +0 -0
- a_sync/a_sync/flags.cpython-39-darwin.so +0 -0
- a_sync/a_sync/function.cpython-39-darwin.so +0 -0
- a_sync/a_sync/function.pyi +27 -12
- a_sync/a_sync/method.cpython-39-darwin.so +0 -0
- a_sync/a_sync/modifiers/manager.cpython-39-darwin.so +0 -0
- a_sync/a_sync/property.cpython-39-darwin.so +0 -0
- a_sync/async_property/cached.cpython-39-darwin.so +0 -0
- a_sync/async_property/proxy.cpython-39-darwin.so +0 -0
- a_sync/asyncio/as_completed.cpython-39-darwin.so +0 -0
- a_sync/asyncio/create_task.cpython-39-darwin.so +0 -0
- a_sync/asyncio/gather.cpython-39-darwin.so +0 -0
- a_sync/asyncio/igather.cpython-39-darwin.so +0 -0
- a_sync/asyncio/sleep.cpython-39-darwin.so +0 -0
- a_sync/debugging.cpython-39-darwin.so +0 -0
- a_sync/debugging.pyi +6 -3
- a_sync/exceptions.cpython-39-darwin.so +0 -0
- a_sync/functools.cpython-39-darwin.so +0 -0
- a_sync/iter.cpython-39-darwin.so +0 -0
- a_sync/primitives/_debug.cpython-39-darwin.so +0 -0
- a_sync/primitives/_loggable.cpython-39-darwin.so +0 -0
- a_sync/primitives/locks/counter.cpython-39-darwin.so +0 -0
- a_sync/primitives/locks/event.cpython-39-darwin.so +0 -0
- a_sync/primitives/locks/prio_semaphore.cpython-39-darwin.so +0 -0
- a_sync/primitives/locks/semaphore.cpython-39-darwin.so +0 -0
- a_sync/utils/repr.cpython-39-darwin.so +0 -0
- {ez_a_sync-0.32.19.dist-info → ez_a_sync-0.32.21.dist-info}/METADATA +1 -1
- {ez_a_sync-0.32.19.dist-info → ez_a_sync-0.32.21.dist-info}/RECORD +38 -38
- {ez_a_sync-0.32.19.dist-info → ez_a_sync-0.32.21.dist-info}/WHEEL +1 -1
- {ez_a_sync-0.32.19.dist-info → ez_a_sync-0.32.21.dist-info}/licenses/LICENSE.txt +0 -0
- {ez_a_sync-0.32.19.dist-info → ez_a_sync-0.32.21.dist-info}/top_level.txt +0 -0
a_sync/__init__.py
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
a_sync/a_sync/function.pyi
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
from a_sync._typing import *
|
|
2
1
|
import functools
|
|
3
|
-
from
|
|
4
|
-
from
|
|
2
|
+
from logging import Logger
|
|
3
|
+
from typing import Any
|
|
4
|
+
from a_sync import TaskMapping
|
|
5
|
+
from a_sync._typing import *
|
|
5
6
|
from a_sync.a_sync.method import (
|
|
6
|
-
ASyncBoundMethod
|
|
7
|
-
ASyncBoundMethodAsyncDefault
|
|
8
|
-
ASyncBoundMethodSyncDefault
|
|
7
|
+
ASyncBoundMethod,
|
|
8
|
+
ASyncBoundMethodAsyncDefault,
|
|
9
|
+
ASyncBoundMethodSyncDefault,
|
|
9
10
|
)
|
|
10
|
-
from a_sync.a_sync.modifiers.manager import ModifierManager
|
|
11
|
-
from typing import Any
|
|
11
|
+
from a_sync.a_sync.modifiers.manager import ModifierManager
|
|
12
12
|
|
|
13
|
-
logger:
|
|
13
|
+
logger: Logger
|
|
14
14
|
|
|
15
15
|
class _ModifiedMixin:
|
|
16
16
|
"""
|
|
@@ -330,7 +330,7 @@ class ASyncFunction(_ModifiedMixin, Generic[P, T]):
|
|
|
330
330
|
__docstring_append__: str
|
|
331
331
|
|
|
332
332
|
class ASyncDecorator(_ModifiedMixin):
|
|
333
|
-
modifiers:
|
|
333
|
+
modifiers: ModifierManager
|
|
334
334
|
def __init__(self, **modifiers: Unpack[ModifierKwargs]) -> None:
|
|
335
335
|
"""
|
|
336
336
|
Initializes an ASyncDecorator instance.
|
|
@@ -372,7 +372,22 @@ class ASyncDecorator(_ModifiedMixin):
|
|
|
372
372
|
"""
|
|
373
373
|
|
|
374
374
|
@overload
|
|
375
|
-
def __call__(self, func:
|
|
375
|
+
def __call__(self, func: CoroFn[P, T]) -> ASyncFunctionAsyncDefault[P, T]:
|
|
376
|
+
"""
|
|
377
|
+
Decorates a function with async or sync behavior based on the default modifier.
|
|
378
|
+
|
|
379
|
+
Args:
|
|
380
|
+
func: The function to decorate.
|
|
381
|
+
|
|
382
|
+
Returns:
|
|
383
|
+
An ASyncFunctionAsyncDefault instance.
|
|
384
|
+
|
|
385
|
+
See Also:
|
|
386
|
+
- :class:`ASyncFunction`
|
|
387
|
+
"""
|
|
388
|
+
|
|
389
|
+
@overload
|
|
390
|
+
def __call__(self, func: SyncFn[P, T]) -> ASyncFunctionSyncDefault[P, T]:
|
|
376
391
|
"""
|
|
377
392
|
Decorates a function with async or sync behavior based on the default modifier.
|
|
378
393
|
|
|
@@ -380,7 +395,7 @@ class ASyncDecorator(_ModifiedMixin):
|
|
|
380
395
|
func: The function to decorate.
|
|
381
396
|
|
|
382
397
|
Returns:
|
|
383
|
-
An
|
|
398
|
+
An ASyncFunctionSyncDefault instance.
|
|
384
399
|
|
|
385
400
|
See Also:
|
|
386
401
|
- :class:`ASyncFunction`
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
a_sync/debugging.pyi
CHANGED
|
@@ -5,6 +5,7 @@ from typing import (
|
|
|
5
5
|
AsyncIterator,
|
|
6
6
|
Awaitable,
|
|
7
7
|
Callable,
|
|
8
|
+
Coroutine,
|
|
8
9
|
Literal,
|
|
9
10
|
NoReturn,
|
|
10
11
|
TypeVar,
|
|
@@ -39,7 +40,7 @@ def stuck_coro_debugger(
|
|
|
39
40
|
) -> ASyncGeneratorFunction[__P, __TYield]: ...
|
|
40
41
|
@overload
|
|
41
42
|
def stuck_coro_debugger(
|
|
42
|
-
fn: Callable[Concatenate[__TBase, __P],
|
|
43
|
+
fn: Callable[Concatenate[__TBase, __P], Coroutine[Any, Any, __T]],
|
|
43
44
|
logger: Logger = logger,
|
|
44
45
|
interval: int = _FIVE_MINUTES,
|
|
45
46
|
) -> ASyncBoundMethod[__TBase, __P, __T]: ...
|
|
@@ -63,8 +64,10 @@ def stuck_coro_debugger(
|
|
|
63
64
|
) -> Callable[__P, AsyncIterator[__TYield]]: ...
|
|
64
65
|
@overload
|
|
65
66
|
def stuck_coro_debugger(
|
|
66
|
-
fn: Callable[__P,
|
|
67
|
-
|
|
67
|
+
fn: Callable[__P, Coroutine[Any, Any, __T]],
|
|
68
|
+
logger: Logger = logger,
|
|
69
|
+
interval: int = _FIVE_MINUTES,
|
|
70
|
+
) -> Callable[__P, Coroutine[Any, Any, __T]]: ...
|
|
68
71
|
def stuck_coro_debugger(fn, logger=logger, interval=_FIVE_MINUTES): ...
|
|
69
72
|
async def _stuck_debug_task(
|
|
70
73
|
logger: Logger, interval: int, fn: Callable[__P, __T], *args: __P.args, **kwargs: __P.kwargs
|
|
Binary file
|
|
Binary file
|
a_sync/iter.cpython-39-darwin.so
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
ez_a_sync-0.32.
|
|
2
|
-
ez_a_sync-0.32.
|
|
3
|
-
ez_a_sync-0.32.
|
|
4
|
-
ez_a_sync-0.32.
|
|
5
|
-
ez_a_sync-0.32.
|
|
1
|
+
ez_a_sync-0.32.21.dist-info/RECORD,,
|
|
2
|
+
ez_a_sync-0.32.21.dist-info/WHEEL,sha256=bDWaFWigpG5bEpqw9IoRiyYs8MvmSFh0OhUAOoi_-KA,134
|
|
3
|
+
ez_a_sync-0.32.21.dist-info/top_level.txt,sha256=ew2xVyFeZE_a5XMEL64h7-vJIbaBQieaFcvBAWUpU_s,7
|
|
4
|
+
ez_a_sync-0.32.21.dist-info/METADATA,sha256=lo0ppv5dvFgHlmVRYiPXVPgMdSC6MXS68CePUKbTh_8,13197
|
|
5
|
+
ez_a_sync-0.32.21.dist-info/licenses/LICENSE.txt,sha256=1on6-17OUMlja6vSPTcmlmeT_DwujCZJijYxaplBvZk,1075
|
|
6
6
|
a_sync/debugging.c,sha256=RfJnHds7wZdPmWg5PYc26nqjOQijqdOMMbGk43tvUhU,589339
|
|
7
|
-
a_sync/debugging.cpython-39-darwin.so,sha256=
|
|
7
|
+
a_sync/debugging.cpython-39-darwin.so,sha256=x9CpwvZak6rSPVBn-AZJ1Vu708Y6fEgZVHKmvXmOWkM,149680
|
|
8
8
|
a_sync/task.py,sha256=lHeGEPyEoUPNCTMGBGxvJxTZSu6KOqN5VC0rIf_slIY,35049
|
|
9
|
-
a_sync/exceptions.cpython-39-darwin.so,sha256=
|
|
9
|
+
a_sync/exceptions.cpython-39-darwin.so,sha256=tD9FLbcSxsgwVWbAbUNG4yfBYMW2LYiXpaQ6H9GV8P0,158128
|
|
10
10
|
a_sync/_smart.c,sha256=F6BKemtVy0XMKg4EsgqzIf1oO_kBFHco7RKYRHAh5hk,917706
|
|
11
11
|
a_sync/_smart.pyi,sha256=mUQwUiiSsMsbtJTKdXm076ua5B2A9USaKgjZq1Se_ZQ,5390
|
|
12
12
|
a_sync/functools.pyi,sha256=HGM208HKg5FOUbu9CbfnIOx3sdQB1OwO1t-0tZKd-T4,1404
|
|
13
13
|
a_sync/_typing.py,sha256=x24VIVjxz8sUWPmQR072pHAQxJO769Nn02f3eakFpe8,6850
|
|
14
14
|
a_sync/ENVIRONMENT_VARIABLES.py,sha256=YgIB8mQRqQBLbD3DdwMjx4ylqO8pK3GUvSNCerWJzx8,1280
|
|
15
|
-
a_sync/_smart.cpython-39-darwin.so,sha256=
|
|
15
|
+
a_sync/_smart.cpython-39-darwin.so,sha256=a0HzCIcMQuNkPjkegv12US8Ml3LLkf3dQiZQPNTN1E8,208328
|
|
16
16
|
a_sync/iter.pyx,sha256=TKzdMQkI74oKdgW-Us1WSgE5_KdS_7dOUykAmTHiXgU,37486
|
|
17
17
|
a_sync/__init__.pxd,sha256=ol4jqkvuweaaU8GQU_Mq9rak8IIsagYTdhYhbKK74ac,81
|
|
18
18
|
a_sync/functools.pxd,sha256=hhygzVpa5tXnDWR1pi_WLkOBd_1mC60K3279wYFEfA8,187
|
|
19
|
-
a_sync/iter.cpython-39-darwin.so,sha256=
|
|
19
|
+
a_sync/iter.cpython-39-darwin.so,sha256=4_ETAdiXopdeVf95LeMz0u5M2ouKWXyOnFyZFY8GSlg,408456
|
|
20
20
|
a_sync/_smart.pxd,sha256=3FlPqSvAtmGXIDFzfm7wpkvL6xt8z8w-vwow4Lura2g,76
|
|
21
21
|
a_sync/exceptions.pyi,sha256=NnBEKUBzBCl0kLj75ukwyQeWXjwPSkDg-NxKsXh-Ans,10834
|
|
22
|
-
a_sync/__init__.py,sha256=
|
|
22
|
+
a_sync/__init__.py,sha256=lgwXsFYALBp0ORHRLKlpfPE79GIqbhR_MP8JbZStBGc,5750
|
|
23
23
|
a_sync/debugging.pyx,sha256=Z29Lek1NyUXVFHjfk9O6XWxPNk1uRFyY6tK6fTfgxGM,3045
|
|
24
24
|
a_sync/aliases.py,sha256=TbLyuLeFfJEmcC5-NP6h4DQ9QXlQjGny2NUP_x1tflw,212
|
|
25
25
|
a_sync/_smart.pyx,sha256=5ceSxpdh51l36-fKHHW9YI6lmc8_PlarM8fRIqzlI3A,19773
|
|
26
26
|
a_sync/functools.c,sha256=KwvIpLg4DT2z4P-VlvJLL2pR3CeWdQslyKLOY4xrQlI,450421
|
|
27
27
|
a_sync/functools.pyx,sha256=F-Vp5JrhEt4jaFQDx48FadI7NGLlPfoIPWRWHTQob0Q,4837
|
|
28
|
-
a_sync/functools.cpython-39-darwin.so,sha256=
|
|
28
|
+
a_sync/functools.cpython-39-darwin.so,sha256=2WskI-Nm2GgjInIMqDjmwK-YV6hEBunG99AxZKYFRZI,121904
|
|
29
29
|
a_sync/iter.c,sha256=WS1z9wYxIBs9XcQBsfZnQCmDdkM5GqM-AbVZR-4-4Bk,1617426
|
|
30
30
|
a_sync/iter.pxd,sha256=VQKDAzm1M4snbrL9vwhU2zl04H4LeJrWtqksw6yGWOc,427
|
|
31
31
|
a_sync/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -33,7 +33,7 @@ a_sync/future.py,sha256=CK3t7BE1AfuFhWLFw50rFaCox0IRYW2x0HqVpOJC6o8,48675
|
|
|
33
33
|
a_sync/iter.pyi,sha256=785C3RAcRT69ngv3LfEE56Sf8hyLqapxS94uqfz1na8,15412
|
|
34
34
|
a_sync/exceptions.c,sha256=7juaOwpPuyUNyMcN3KavW1QM6uUIDHYKwTQBf3PYpH8,550527
|
|
35
35
|
a_sync/exceptions.pyx,sha256=MGgpBVAESC-5TtEEECgs74ZIx5ToR6qi_stfmnCyoaQ,13201
|
|
36
|
-
a_sync/debugging.pyi,sha256=
|
|
36
|
+
a_sync/debugging.pyi,sha256=AELgYmG2aLEBrkSHL7WKUrJGzyk-XXDq_abS8W6ccck,2311
|
|
37
37
|
a_sync/executor.py,sha256=bacluNlegqlioPxlcFOTaGiH2ylXJYkfBSsUMnQqOWQ,21401
|
|
38
38
|
a_sync/a_sync/_kwargs.pxd,sha256=RdEVKGXeBvq5_O4WkRXtjKdi8FV6oNPGhtJ-epUnr1M,92
|
|
39
39
|
a_sync/a_sync/abstract.pyx,sha256=OUp1CJ3NnBInC5agJ-6Ob_n6HfjkHY-f_6gPgZxaGx8,7864
|
|
@@ -45,15 +45,15 @@ a_sync/a_sync/property.pyi,sha256=GWXCWpJBa_qxBYfbv_Lmt02Md8WK9nJYTu7blO4O2ew,13
|
|
|
45
45
|
a_sync/a_sync/_helpers.pxd,sha256=VG28VRW-jlTZJ-0H-W8Y8u5gw8zUVIbsb3nW-REI_Z4,118
|
|
46
46
|
a_sync/a_sync/config.py,sha256=siXP4CFLQ_vswuG5K-G6cOSjQ6xKc1gN7-XNHFN2tFU,6221
|
|
47
47
|
a_sync/a_sync/_flags.c,sha256=hxVtZT5faViQExnKIQnSBb-p9Rbqpxpor9dNxQH9dZA,217269
|
|
48
|
-
a_sync/a_sync/property.cpython-39-darwin.so,sha256=
|
|
49
|
-
a_sync/a_sync/_descriptor.cpython-39-darwin.so,sha256=
|
|
50
|
-
a_sync/a_sync/function.cpython-39-darwin.so,sha256=
|
|
51
|
-
a_sync/a_sync/_flags.cpython-39-darwin.so,sha256=
|
|
48
|
+
a_sync/a_sync/property.cpython-39-darwin.so,sha256=Pxx4chHWu6M0qu4IKor_Rg3VvLzCNNyOCmOB4clzixE,301568
|
|
49
|
+
a_sync/a_sync/_descriptor.cpython-39-darwin.so,sha256=UBAE3RdFpbMu6EeYOEfXKHMgnUVJJZYtd65duqKqvTI,208640
|
|
50
|
+
a_sync/a_sync/function.cpython-39-darwin.so,sha256=YdR42ojBLmkyUsr1LGVrynHHjDJ30uZzLHmZaLkz9mk,385504
|
|
51
|
+
a_sync/a_sync/_flags.cpython-39-darwin.so,sha256=qbnCK8AyZtNfWwj0E7jMbbrlbb1gm5mUCeD5Y7i-WaQ,76360
|
|
52
52
|
a_sync/a_sync/decorator.py,sha256=CdZuy_ql4oxzg4qbxCHTtHrGnMkxJKs1LwzlmLdX3Uc,17188
|
|
53
|
-
a_sync/a_sync/method.cpython-39-darwin.so,sha256=
|
|
53
|
+
a_sync/a_sync/method.cpython-39-darwin.so,sha256=l-McRuLv59zrk4Cg21uUP5wBxaKy3eK_0WgLOEGZVhc,342168
|
|
54
54
|
a_sync/a_sync/property.c,sha256=gJra9kx2XTDD_9tLy-xvQOqYvgXj2f5o4zDZMX9qMbA,1248760
|
|
55
|
-
a_sync/a_sync/flags.cpython-39-darwin.so,sha256=
|
|
56
|
-
a_sync/a_sync/abstract.cpython-39-darwin.so,sha256=
|
|
55
|
+
a_sync/a_sync/flags.cpython-39-darwin.so,sha256=_UapTOg2ZAJMDDB4vUXkOrAHG3J6yvMIEtKZfJyahXU,56232
|
|
56
|
+
a_sync/a_sync/abstract.cpython-39-darwin.so,sha256=FrDV_3ypx_Iz9-hEhRhs50ckWTWJ90eqCDoENu_zCt8,122288
|
|
57
57
|
a_sync/a_sync/_helpers.pyi,sha256=t2iBYRsG3qCfhzEfO6aG4KLQv_LWe8yjYDZ4RppnOak,319
|
|
58
58
|
a_sync/a_sync/method.pyx,sha256=2asS_Ej5q6-BZ9T8JYqXjLOaQ9-n2SBcmXaAvSoJgps,36146
|
|
59
59
|
a_sync/a_sync/flags.pyi,sha256=PPAqrtJOvabVudb_yT32yZ95PP15uzzuXD2NirkWqTw,2229
|
|
@@ -63,10 +63,10 @@ a_sync/a_sync/__init__.py,sha256=P8AO0TBmYPW5BYVk0TohOwLq8jurpRKfXnaPO-qDMJw,220
|
|
|
63
63
|
a_sync/a_sync/function.c,sha256=G0iXdFKURVdBDDOND6ZI1mEy29npz4O5nh9B1aEx114,1715536
|
|
64
64
|
a_sync/a_sync/_descriptor.pyi,sha256=N77KA4DQbXUXKeAf-vTpAXc7E4Bk1d-Khtr7vjzwRwI,1343
|
|
65
65
|
a_sync/a_sync/_helpers.c,sha256=jlTq1V_AHGwTlo53o-NXmSxDquWj2_ZqmA1U900L3Ys,551235
|
|
66
|
-
a_sync/a_sync/base.cpython-39-darwin.so,sha256=
|
|
67
|
-
a_sync/a_sync/_helpers.cpython-39-darwin.so,sha256=
|
|
66
|
+
a_sync/a_sync/base.cpython-39-darwin.so,sha256=4UdlCrmk4oHKS3uIkvqemO6CrHVBme4_h4MtGpkyvEE,141720
|
|
67
|
+
a_sync/a_sync/_helpers.cpython-39-darwin.so,sha256=nXt46hFLeWpg7gJ9f6Aj_VJzVsOFiT0mXyX7VDolcjY,146096
|
|
68
68
|
a_sync/a_sync/abstract.pyi,sha256=IGEh74mnvZECWpSr0bh-ZQeFc-6Q4cu9EefhEaDLp2c,5071
|
|
69
|
-
a_sync/a_sync/_kwargs.cpython-39-darwin.so,sha256=
|
|
69
|
+
a_sync/a_sync/_kwargs.cpython-39-darwin.so,sha256=d6W2u3iA3EEofDpF7fcp23mHQZYZUDbRxFdZsPtHvhg,105696
|
|
70
70
|
a_sync/a_sync/base.pyx,sha256=73vU-pr2XClsKLcGlQbhAhjLFHMoBQrb6UH-YuCBhxU,10603
|
|
71
71
|
a_sync/a_sync/function.pxd,sha256=QOGVstj2s4oQy18QwjCy--eu4pOlheVwWg3oiT2KDno,830
|
|
72
72
|
a_sync/a_sync/_descriptor.c,sha256=Q2O12TGkhzGShoRS4E5RSBiOUoPsoZWuEQ4_gWnCcpA,844125
|
|
@@ -80,12 +80,12 @@ a_sync/a_sync/method.pyi,sha256=DpzdpuYSi7wiZkkX9xB0pg1oFcCYxJbVrWj3J_ISo3M,1781
|
|
|
80
80
|
a_sync/a_sync/_helpers.pyx,sha256=rvsCXR7tvddUIymUQCSi4eGzNCstYi5zGAdLCTPaIFQ,5409
|
|
81
81
|
a_sync/a_sync/flags.pyx,sha256=PU_DAZzoXhn-Z-okbTu0p6stnwnKsSEn781TryRRs0E,2305
|
|
82
82
|
a_sync/a_sync/_flags.pxd,sha256=w8CBx5wDoCBRHFmeQOuVwWefDC3LP3zIWGaao_-y_uY,188
|
|
83
|
-
a_sync/a_sync/function.pyi,sha256=
|
|
83
|
+
a_sync/a_sync/function.pyi,sha256=Ui6VrM_i7Vw7PPye3X4hOQ3Za7ikD0qbI26HIs7wqow,17990
|
|
84
84
|
a_sync/a_sync/_kwargs.c,sha256=blxZEu_yTOZAAn1aARwbJlTKoSgC3ojhSWeGgG6Y6ws,405231
|
|
85
85
|
a_sync/a_sync/_kwargs.pyx,sha256=0hHXMlOpJmtNJ7yApnwEr7U_sub5yrOuZbSn_oBMxwk,1975
|
|
86
86
|
a_sync/a_sync/_descriptor.pyx,sha256=jlQ8VgBmUB7fMUBsb3cIqyREmspkTgLQv5jZNqowkwg,13602
|
|
87
87
|
a_sync/a_sync/modifiers/manager.pyi,sha256=oSMpBaZJPxzqaAyLT8ikA1DNHvyPRVqVIXrL0EvDe4A,6222
|
|
88
|
-
a_sync/a_sync/modifiers/manager.cpython-39-darwin.so,sha256=
|
|
88
|
+
a_sync/a_sync/modifiers/manager.cpython-39-darwin.so,sha256=8I9miptW7-vecN1mDTpzPkXrbgHaSVniv4C8xZV8-mE,168944
|
|
89
89
|
a_sync/a_sync/modifiers/__init__.pxd,sha256=17tPpMY2ByVbMGIpI5kiP3WX8V9IM5ZHJp0Y3eT6LvE,60
|
|
90
90
|
a_sync/a_sync/modifiers/semaphores.py,sha256=V1_jjxwuXq55y6Lv4yP4mymVj5AOCMIZXSkaZSKwEdw,6916
|
|
91
91
|
a_sync/a_sync/modifiers/manager.pxd,sha256=s7zw1kllYYGpe5uFETRIUFsgbVdtFM8jGh4RxZgm25M,183
|
|
@@ -96,7 +96,7 @@ a_sync/a_sync/modifiers/limiter.py,sha256=WjO32P4vZLvyJnwpm2qFgqwRmCM7eEHxcdXzil
|
|
|
96
96
|
a_sync/a_sync/modifiers/cache/memory.py,sha256=vON9K6K3nMkGphfUHCTrtURJUXZ3IE9B757wa-H1oFk,5335
|
|
97
97
|
a_sync/a_sync/modifiers/cache/__init__.py,sha256=SJlZ1EyyzBkYlWMU4XbiAlW9SCqCQbOAmDgVAP7CDN0,5532
|
|
98
98
|
a_sync/utils/repr.pyx,sha256=xdsVdK75Zi5pAoh-8qRG0q7F0ySAq1zDkksZw37FoL4,2632
|
|
99
|
-
a_sync/utils/repr.cpython-39-darwin.so,sha256=
|
|
99
|
+
a_sync/utils/repr.cpython-39-darwin.so,sha256=Qo_trQuSYWOChFWSCV_JA4hEEg7Gb1cReBz2kC83jDA,145400
|
|
100
100
|
a_sync/utils/__init__.py,sha256=Y6R-IcD5ROzp2Zs3ZMv3bapkcfOpJHlBeD838bntd-Q,3213
|
|
101
101
|
a_sync/utils/iterators.py,sha256=GkT2fgMVKDorT-BKPPOPOIDj5Zt4yl-5vAmpn4H5wGA,11055
|
|
102
102
|
a_sync/utils/repr.pyi,sha256=PWdsa6sF9_3nBqEgLaxtaHty7o7gwL--jPqvcelHY10,131
|
|
@@ -111,18 +111,18 @@ a_sync/primitives/__init__.py,sha256=U5r-Do_TKR1FbfLEHuckiYs87QkN4HsYNZfunRhX52c
|
|
|
111
111
|
a_sync/primitives/_loggable.pxd,sha256=1YRkqc20KcPoTukbWXn7qpbZ8zA16X1h_84vadCqSPc,133
|
|
112
112
|
a_sync/primitives/_loggable.pyx,sha256=jxKSBCs4VlXuYC7LsxbUJw0FJInjBKOkEdBSoqCndxY,3003
|
|
113
113
|
a_sync/primitives/_debug.pyx,sha256=NH2hr-yQLz1pKnmleIpIeDVTy75KSguQpUiuoza_ahc,7849
|
|
114
|
-
a_sync/primitives/_loggable.cpython-39-darwin.so,sha256=
|
|
115
|
-
a_sync/primitives/_debug.cpython-39-darwin.so,sha256=
|
|
114
|
+
a_sync/primitives/_loggable.cpython-39-darwin.so,sha256=t3pdH-ZhjeBwa6EO8eDlMqXea9QBeHUv8qLW0k332hk,103904
|
|
115
|
+
a_sync/primitives/_debug.cpython-39-darwin.so,sha256=LTs4x_Wvu8DZ6WhaKxrro5NEKQFUj0RB_TOVL4uJ0ks,149256
|
|
116
116
|
a_sync/primitives/_loggable.c,sha256=Us1P0zNcyclaIoWNOwRQp92ejJTqgX0aHyIdBBVb2DI,419940
|
|
117
|
-
a_sync/primitives/locks/counter.cpython-39-darwin.so,sha256=
|
|
117
|
+
a_sync/primitives/locks/counter.cpython-39-darwin.so,sha256=nnVNVIjCsVvBxgxawJRanClbuHZRx_YDFOs1ILMaAvc,170256
|
|
118
118
|
a_sync/primitives/locks/prio_semaphore.pyi,sha256=w3xGj3-kdFEjw4k8vzt4TiWsG8j5KC6erXBNNrEhaL0,7644
|
|
119
119
|
a_sync/primitives/locks/event.pyx,sha256=PFQoQVZ9DozV2LOdKK-03fWpX_MrvBqxikKk4k3PjHs,6049
|
|
120
120
|
a_sync/primitives/locks/semaphore.pyx,sha256=eQX6J5SdWK5qnXNPs6frO6BpQf9RuExNwZIjMlkNnHI,14965
|
|
121
121
|
a_sync/primitives/locks/prio_semaphore.c,sha256=xzwXUNqHvWCUuORdnEuia0oRE7PIYVj2a5dn0AvwXZw,1161447
|
|
122
122
|
a_sync/primitives/locks/__init__.pxd,sha256=DuPhDRldnCwqBUxgo9V5K0GmA8BWLf5fC266ujDQ9pc,302
|
|
123
|
-
a_sync/primitives/locks/semaphore.cpython-39-darwin.so,sha256=
|
|
123
|
+
a_sync/primitives/locks/semaphore.cpython-39-darwin.so,sha256=UULW70NqNmIqhBMczCqkozr8-wwiBvjNLQ7YE_UzHjc,257264
|
|
124
124
|
a_sync/primitives/locks/prio_semaphore.pxd,sha256=SZXX1jH12m9PKH9VmrKpLdTctY0c_wYS75YGWoDdlzE,1041
|
|
125
|
-
a_sync/primitives/locks/prio_semaphore.cpython-39-darwin.so,sha256=
|
|
125
|
+
a_sync/primitives/locks/prio_semaphore.cpython-39-darwin.so,sha256=VGlJOhRLWqy6BhMwAD5jnEqppI2Zf2RQzRleQZy-vIE,257888
|
|
126
126
|
a_sync/primitives/locks/counter.pyx,sha256=H_3LN50-zDvBSgHoKXXOMlUKs78aZSFDhu8gQrhWV5Y,9055
|
|
127
127
|
a_sync/primitives/locks/__init__.py,sha256=XPiWbxxPyaCC-NnfNm42up2qf61LdqFgzGkq082DL1Q,436
|
|
128
128
|
a_sync/primitives/locks/counter.pxd,sha256=_HoPXPMTRY3Gw3GPUB2jAx7lUpjJ4QyO75YiR_BehAQ,409
|
|
@@ -133,7 +133,7 @@ a_sync/primitives/locks/prio_semaphore.pyx,sha256=DAgcufTedvvPBj5BfM56chjplEi0QU
|
|
|
133
133
|
a_sync/primitives/locks/semaphore.pyi,sha256=ynHIA0k9HMzbsTfhMAwCEfpZSECVhXxhcNAwwQmsSlI,5975
|
|
134
134
|
a_sync/primitives/locks/counter.c,sha256=MiG2k0PhWJHpC5NBh87GJbLBYOjOhzuf9uGXb86nPjc,713260
|
|
135
135
|
a_sync/primitives/locks/semaphore.pxd,sha256=zy-PgktLUsFaXxvrSbB3m6gxisgzchCpKrcX8Zzwq_I,585
|
|
136
|
-
a_sync/primitives/locks/event.cpython-39-darwin.so,sha256=
|
|
136
|
+
a_sync/primitives/locks/event.cpython-39-darwin.so,sha256=mz_WUiz8yGndLcFHrLzKEw9hIklIxQMvSO0tqcFQtOw,167192
|
|
137
137
|
a_sync/primitives/locks/event.pxd,sha256=Wk1wLD8P6Nml1mzrRM6H34bD06LZWovjEYKnRhGcXE4,696
|
|
138
138
|
a_sync/primitives/locks/counter.pyi,sha256=d83iZwFj5mK9fIohh7n1uRdRiGAnfi2FNMZSyKtli9A,5077
|
|
139
139
|
a_sync/sphinx/__init__.py,sha256=UvdsakVmkn0Lw4vEd3jA3_Acymde95-78o87lel8ikk,49
|
|
@@ -144,12 +144,12 @@ a_sync/async_property/cached.pyi,sha256=kL7Cvn7z26R7JROFDQ22GaWll-TvOL79Q-OeQ2oa
|
|
|
144
144
|
a_sync/async_property/cached.c,sha256=70ERIMLrNtYymVNVB_dThQUQFH7a7LwUzeDM8oE8znc,858352
|
|
145
145
|
a_sync/async_property/__init__.pxd,sha256=EGawuQLZIz7ZZLOFmaOQAFUVvabadR0aPYBW7U4TaCo,74
|
|
146
146
|
a_sync/async_property/cached.pxd,sha256=u4XHDFvvaRv7y65VyDI8gVmYzlGD-kFlN1H2lc48EqU,339
|
|
147
|
-
a_sync/async_property/cached.cpython-39-darwin.so,sha256=
|
|
147
|
+
a_sync/async_property/cached.cpython-39-darwin.so,sha256=_IScBqdUB1T7lL8AFvkSqgjsw5zqYeyxpbssX1u8xWY,205480
|
|
148
148
|
a_sync/async_property/proxy.pxd,sha256=fyc5IGOcwNzBP6XsG3vYKjbLP6dOfSVCtGb1EEWDxVU,47
|
|
149
149
|
a_sync/async_property/__init__.py,sha256=L0JYdB7p3RLDRVNExPKl9MtcHaPLIqo5lnpGmHVUI9E,63
|
|
150
150
|
a_sync/async_property/proxy.pyx,sha256=0_qGYnr6ZyBtQQGIRI2cMB_o0Bz7RZxJKwuVQGFTgTI,13295
|
|
151
151
|
a_sync/async_property/cached.pyx,sha256=4UoHk6yACkpwKjD_DBHLMb2JIAAhKVmhDGU7WZYg-Cc,6314
|
|
152
|
-
a_sync/async_property/proxy.cpython-39-darwin.so,sha256=
|
|
152
|
+
a_sync/async_property/proxy.cpython-39-darwin.so,sha256=K0SPrrhnNXszbP0XXGXPxmOcIwH2vupV6H_-AVYR7eA,333400
|
|
153
153
|
a_sync/asyncio/sleep.pyx,sha256=kjNeRimAfMZB6vJs7t-SbtMgnRqhybO3cZ7uijkosJs,1273
|
|
154
154
|
a_sync/asyncio/as_completed.pxd,sha256=mISE2jdb2jOS0q3TKg0F_k-Zf-d3hzdBNKU1PT-Tn40,162
|
|
155
155
|
a_sync/asyncio/igather.c,sha256=467zCelfZro_nvIgmwbYFmceE45Cibb8JvpTMsKofM8,471337
|
|
@@ -164,14 +164,14 @@ a_sync/asyncio/as_completed.pyi,sha256=-VdtfMlX0XdkqJbJm8C0gEAi_BfRbkz3Xkdver6vH
|
|
|
164
164
|
a_sync/asyncio/sleep.pyi,sha256=ab8OtiZm4Py0-sVQA2pzGVZiHUoTItkJG_Nd02xduuE,537
|
|
165
165
|
a_sync/asyncio/sleep.c,sha256=vrlY1_8dMSyk1ggO6tk5Td43gujjXiJAt2FFUgMMpoU,342937
|
|
166
166
|
a_sync/asyncio/as_completed.c,sha256=jbM1c_UmHWd_oXnWAYNDDNz1kKCRw0Ev8vBOzxri52A,735119
|
|
167
|
-
a_sync/asyncio/create_task.cpython-39-darwin.so,sha256=
|
|
167
|
+
a_sync/asyncio/create_task.cpython-39-darwin.so,sha256=voivtHb0A5rlawWAFdcjXORB9Em5fK0MRGOxY17po74,148240
|
|
168
168
|
a_sync/asyncio/create_task.pyi,sha256=5H2z4k_2dGG2QTGjGEgP1N6ITuClYYWzkPbzaeQwKks,1864
|
|
169
|
-
a_sync/asyncio/gather.cpython-39-darwin.so,sha256=
|
|
170
|
-
a_sync/asyncio/igather.cpython-39-darwin.so,sha256=
|
|
171
|
-
a_sync/asyncio/as_completed.cpython-39-darwin.so,sha256=
|
|
169
|
+
a_sync/asyncio/gather.cpython-39-darwin.so,sha256=aoflOu9uvm734x0jH2yeV4n6ybk0Olh-zNILFzr2zgA,166792
|
|
170
|
+
a_sync/asyncio/igather.cpython-39-darwin.so,sha256=YyDclu1hQ92feL_NRYL5Jk8ZONwOoeHvvmh6ELn3GlA,119552
|
|
171
|
+
a_sync/asyncio/as_completed.cpython-39-darwin.so,sha256=I2c4VzoEThhSzhdza_mfUPdnIoAx9cmRM4AV-pKM7j8,187280
|
|
172
172
|
a_sync/asyncio/igather.pyx,sha256=reJZ0Jkbx2MLu-LTrQ_hOPfhEdbFlPEQ9ro98sAcRRA,6574
|
|
173
173
|
a_sync/asyncio/gather.pyx,sha256=4ALHvhJPQsNtw7b9dsbhwmKpXEbiRzOCjMqagi3sTXs,8566
|
|
174
174
|
a_sync/asyncio/gather.c,sha256=MLhPvLSGGCpxgMNtiA8Xcx3nniDOLzMSVYnFbSFWukE,637555
|
|
175
175
|
a_sync/asyncio/create_task.pxd,sha256=x-sZVX-26NoqxYb5mH33uh2Mg-3AqqdYGXx4Ai7xZwU,143
|
|
176
|
-
a_sync/asyncio/sleep.cpython-39-darwin.so,sha256=
|
|
176
|
+
a_sync/asyncio/sleep.cpython-39-darwin.so,sha256=v7G9RLhkMJydXJITUnHvNTDLORdMvtV-A_MBjc2HHJc,84296
|
|
177
177
|
a_sync/asyncio/as_completed.pyx,sha256=ar0gJ3iN6-4Jw8xy6i7KVJ54RnAGt1JWE85Wh6kPF48,9052
|
|
File without changes
|
|
File without changes
|