ez-a-sync 0.32.11__cp313-cp313-macosx_11_0_arm64.whl → 0.32.13__cp313-cp313-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/_smart.c +1122 -1133
- a_sync/_smart.cpython-313-darwin.so +0 -0
- a_sync/_smart.pyx +11 -10
- a_sync/a_sync/_descriptor.cpython-313-darwin.so +0 -0
- a_sync/a_sync/_flags.cpython-313-darwin.so +0 -0
- a_sync/a_sync/_helpers.cpython-313-darwin.so +0 -0
- a_sync/a_sync/_kwargs.cpython-313-darwin.so +0 -0
- a_sync/a_sync/abstract.cpython-313-darwin.so +0 -0
- a_sync/a_sync/base.cpython-313-darwin.so +0 -0
- a_sync/a_sync/flags.cpython-313-darwin.so +0 -0
- a_sync/a_sync/function.cpython-313-darwin.so +0 -0
- a_sync/a_sync/method.cpython-313-darwin.so +0 -0
- a_sync/a_sync/modifiers/manager.cpython-313-darwin.so +0 -0
- a_sync/a_sync/property.cpython-313-darwin.so +0 -0
- a_sync/async_property/cached.cpython-313-darwin.so +0 -0
- a_sync/async_property/proxy.cpython-313-darwin.so +0 -0
- a_sync/asyncio/as_completed.cpython-313-darwin.so +0 -0
- a_sync/asyncio/create_task.c +735 -579
- a_sync/asyncio/create_task.cpython-313-darwin.so +0 -0
- a_sync/asyncio/create_task.pyx +7 -4
- a_sync/asyncio/gather.cpython-313-darwin.so +0 -0
- a_sync/asyncio/igather.cpython-313-darwin.so +0 -0
- a_sync/asyncio/sleep.cpython-313-darwin.so +0 -0
- a_sync/debugging.c +3 -2
- a_sync/debugging.cpython-313-darwin.so +0 -0
- a_sync/exceptions.cpython-313-darwin.so +0 -0
- a_sync/functools.cpython-313-darwin.so +0 -0
- a_sync/iter.c +216 -81
- a_sync/iter.cpython-313-darwin.so +0 -0
- a_sync/iter.pxd +2 -0
- a_sync/primitives/_debug.cpython-313-darwin.so +0 -0
- a_sync/primitives/_loggable.cpython-313-darwin.so +0 -0
- a_sync/primitives/locks/counter.cpython-313-darwin.so +0 -0
- a_sync/primitives/locks/event.c +426 -428
- a_sync/primitives/locks/event.cpython-313-darwin.so +0 -0
- a_sync/primitives/locks/event.pyx +3 -1
- a_sync/primitives/locks/prio_semaphore.c +2623 -1503
- a_sync/primitives/locks/prio_semaphore.cpython-313-darwin.so +0 -0
- a_sync/primitives/locks/prio_semaphore.pxd +9 -8
- a_sync/primitives/locks/prio_semaphore.pyx +65 -22
- a_sync/primitives/locks/semaphore.c +1048 -1051
- a_sync/primitives/locks/semaphore.cpython-313-darwin.so +0 -0
- a_sync/primitives/locks/semaphore.pyx +4 -2
- a_sync/task.py +22 -6
- a_sync/utils/repr.cpython-313-darwin.so +0 -0
- {ez_a_sync-0.32.11.dist-info → ez_a_sync-0.32.13.dist-info}/METADATA +1 -1
- {ez_a_sync-0.32.11.dist-info → ez_a_sync-0.32.13.dist-info}/RECORD +50 -50
- {ez_a_sync-0.32.11.dist-info → ez_a_sync-0.32.13.dist-info}/WHEEL +1 -1
- {ez_a_sync-0.32.11.dist-info → ez_a_sync-0.32.13.dist-info}/licenses/LICENSE.txt +0 -0
- {ez_a_sync-0.32.11.dist-info → ez_a_sync-0.32.13.dist-info}/top_level.txt +0 -0
|
Binary file
|
|
@@ -10,6 +10,8 @@ from libc.string cimport strcpy
|
|
|
10
10
|
from libc.stdlib cimport malloc, free
|
|
11
11
|
from typing import Container, Literal, List, Optional, Set
|
|
12
12
|
|
|
13
|
+
from cpython.unicode cimport PyUnicode_CompareWithASCIIString
|
|
14
|
+
|
|
13
15
|
from a_sync._typing import CoroFn, P, T
|
|
14
16
|
from a_sync.functools cimport wraps
|
|
15
17
|
from a_sync.primitives._debug cimport _DebugDaemonMixin, _LoopBoundMixin
|
|
@@ -320,10 +322,10 @@ cdef class Semaphore(_DebugDaemonMixin):
|
|
|
320
322
|
|
|
321
323
|
|
|
322
324
|
cdef inline bint _is_not_done(fut: Future):
|
|
323
|
-
return
|
|
325
|
+
return PyUnicode_CompareWithASCIIString(fut._state, b"PENDING") == 0
|
|
324
326
|
|
|
325
327
|
cdef inline bint _is_not_cancelled(fut: Future):
|
|
326
|
-
return
|
|
328
|
+
return PyUnicode_CompareWithASCIIString(fut._state, b"CANCELLED") != 0
|
|
327
329
|
|
|
328
330
|
|
|
329
331
|
cdef class DummySemaphore(Semaphore):
|
a_sync/task.py
CHANGED
|
@@ -43,6 +43,9 @@ logger = getLogger(__name__)
|
|
|
43
43
|
MappingFn = Callable[Concatenate[K, P], Awaitable[V]]
|
|
44
44
|
|
|
45
45
|
|
|
46
|
+
_args = WeakKeyDictionary()
|
|
47
|
+
|
|
48
|
+
|
|
46
49
|
class TaskMapping(DefaultDict[K, "Task[V]"], AsyncIterable[Tuple[K, V]]):
|
|
47
50
|
"""
|
|
48
51
|
A mapping of keys to asynchronous tasks with additional functionality.
|
|
@@ -157,6 +160,9 @@ class TaskMapping(DefaultDict[K, "Task[V]"], AsyncIterable[Tuple[K, V]]):
|
|
|
157
160
|
|
|
158
161
|
if iterables:
|
|
159
162
|
|
|
163
|
+
set_next = self._next.set
|
|
164
|
+
clear_next = self._next.clear
|
|
165
|
+
|
|
160
166
|
@wraps(wrapped_func)
|
|
161
167
|
async def _wrapped_set_next(
|
|
162
168
|
*args: P.args, __a_sync_recursion: int = 0, **kwargs: P.kwargs
|
|
@@ -167,17 +173,27 @@ class TaskMapping(DefaultDict[K, "Task[V]"], AsyncIterable[Tuple[K, V]]):
|
|
|
167
173
|
e.args = *e.args, f"wrapped:{self.__wrapped__}"
|
|
168
174
|
raise
|
|
169
175
|
except TypeError as e:
|
|
170
|
-
if
|
|
171
|
-
|
|
172
|
-
|
|
176
|
+
if (
|
|
177
|
+
args is None
|
|
178
|
+
or __a_sync_recursion > 2
|
|
179
|
+
or not (
|
|
180
|
+
str(e).startswith(wrapped_func.__name__)
|
|
181
|
+
and "got multiple values for argument" in str(e)
|
|
182
|
+
)
|
|
173
183
|
):
|
|
174
184
|
raise
|
|
185
|
+
|
|
175
186
|
# NOTE: args ordering is clashing with provided kwargs. We can handle this in a hacky way.
|
|
176
187
|
# TODO: perform this check earlier and pre-prepare the args/kwargs ordering
|
|
188
|
+
try:
|
|
189
|
+
argspec = _args[self.__wrapped__]
|
|
190
|
+
except KeyError:
|
|
191
|
+
argspec = _args[self.__wrapped__] = getfullargspec(self.__wrapped__).args
|
|
192
|
+
|
|
177
193
|
new_args = list(args)
|
|
178
194
|
new_kwargs = dict(kwargs)
|
|
179
195
|
try:
|
|
180
|
-
for i, arg in enumerate(
|
|
196
|
+
for i, arg in enumerate(argspec):
|
|
181
197
|
if arg in kwargs:
|
|
182
198
|
new_args.insert(i, new_kwargs.pop(arg))
|
|
183
199
|
else:
|
|
@@ -194,8 +210,8 @@ class TaskMapping(DefaultDict[K, "Task[V]"], AsyncIterable[Tuple[K, V]]):
|
|
|
194
210
|
else e2.with_traceback(e2.__traceback__)
|
|
195
211
|
)
|
|
196
212
|
finally:
|
|
197
|
-
|
|
198
|
-
|
|
213
|
+
set_next()
|
|
214
|
+
clear_next()
|
|
199
215
|
|
|
200
216
|
self._wrapped_func = _wrapped_set_next
|
|
201
217
|
init_loader_queue: Queue[Tuple[K, "Future[V]"]] = Queue()
|
|
Binary file
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
a_sync/debugging.c,sha256=
|
|
2
|
-
a_sync/_smart.cpython-313-darwin.so,sha256=
|
|
3
|
-
a_sync/task.py,sha256=
|
|
4
|
-
a_sync/_smart.c,sha256=
|
|
1
|
+
a_sync/debugging.c,sha256=RfJnHds7wZdPmWg5PYc26nqjOQijqdOMMbGk43tvUhU,589339
|
|
2
|
+
a_sync/_smart.cpython-313-darwin.so,sha256=v5M3ulQ7MqHN9jbAjShfplzG3mCnk4yK6lnGqzu9_UA,225008
|
|
3
|
+
a_sync/task.py,sha256=0aPqOe-nswQniHk1wzZ_pCVKXlWPgOSftYA4CHMertU,35045
|
|
4
|
+
a_sync/_smart.c,sha256=v4LKFLjQiZylytn_f7uoWYvziiKnwJK6lj6gNhIyWKw,913352
|
|
5
5
|
a_sync/_smart.pyi,sha256=mUQwUiiSsMsbtJTKdXm076ua5B2A9USaKgjZq1Se_ZQ,5390
|
|
6
6
|
a_sync/functools.pyi,sha256=HGM208HKg5FOUbu9CbfnIOx3sdQB1OwO1t-0tZKd-T4,1404
|
|
7
7
|
a_sync/_typing.py,sha256=x24VIVjxz8sUWPmQR072pHAQxJO769Nn02f3eakFpe8,6850
|
|
@@ -13,18 +13,18 @@ a_sync/_smart.pxd,sha256=3FlPqSvAtmGXIDFzfm7wpkvL6xt8z8w-vwow4Lura2g,76
|
|
|
13
13
|
a_sync/exceptions.pyi,sha256=NnBEKUBzBCl0kLj75ukwyQeWXjwPSkDg-NxKsXh-Ans,10834
|
|
14
14
|
a_sync/__init__.py,sha256=UrDqNkHGqvSY4O9wM9ObaoOP00cLq1sM-ucRnUvLyKk,5726
|
|
15
15
|
a_sync/debugging.pyx,sha256=Z29Lek1NyUXVFHjfk9O6XWxPNk1uRFyY6tK6fTfgxGM,3045
|
|
16
|
-
a_sync/functools.cpython-313-darwin.so,sha256=
|
|
16
|
+
a_sync/functools.cpython-313-darwin.so,sha256=9d37xVeZuSddGAKqVvnZxj5sT1VNpeqAL1jOK_2PaLg,121408
|
|
17
17
|
a_sync/aliases.py,sha256=TbLyuLeFfJEmcC5-NP6h4DQ9QXlQjGny2NUP_x1tflw,212
|
|
18
|
-
a_sync/iter.cpython-313-darwin.so,sha256=
|
|
19
|
-
a_sync/_smart.pyx,sha256=
|
|
18
|
+
a_sync/iter.cpython-313-darwin.so,sha256=bgSvyBIeI6QuME7nrNYQ_uB_ea4j4Cy3Mqrfc8sExHw,408056
|
|
19
|
+
a_sync/_smart.pyx,sha256=H69s97xyiuYZcF5k_pXv8c50g40kkooKkSAsSH7359U,19459
|
|
20
20
|
a_sync/functools.c,sha256=KwvIpLg4DT2z4P-VlvJLL2pR3CeWdQslyKLOY4xrQlI,450421
|
|
21
21
|
a_sync/functools.pyx,sha256=F-Vp5JrhEt4jaFQDx48FadI7NGLlPfoIPWRWHTQob0Q,4837
|
|
22
|
-
a_sync/iter.c,sha256=
|
|
23
|
-
a_sync/iter.pxd,sha256=
|
|
24
|
-
a_sync/exceptions.cpython-313-darwin.so,sha256=
|
|
22
|
+
a_sync/iter.c,sha256=WS1z9wYxIBs9XcQBsfZnQCmDdkM5GqM-AbVZR-4-4Bk,1617426
|
|
23
|
+
a_sync/iter.pxd,sha256=VQKDAzm1M4snbrL9vwhU2zl04H4LeJrWtqksw6yGWOc,427
|
|
24
|
+
a_sync/exceptions.cpython-313-darwin.so,sha256=BLREiCJKuOCssw3EtqWk7RtLyn8dx1DnRf8q7LsFu6c,157856
|
|
25
25
|
a_sync/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
26
26
|
a_sync/future.py,sha256=CK3t7BE1AfuFhWLFw50rFaCox0IRYW2x0HqVpOJC6o8,48675
|
|
27
|
-
a_sync/debugging.cpython-313-darwin.so,sha256=
|
|
27
|
+
a_sync/debugging.cpython-313-darwin.so,sha256=n02lfG2pFEzodvRp9hQFmnilg4ZHHuBnCbmMA-COo1I,150128
|
|
28
28
|
a_sync/iter.pyi,sha256=785C3RAcRT69ngv3LfEE56Sf8hyLqapxS94uqfz1na8,15412
|
|
29
29
|
a_sync/exceptions.c,sha256=7juaOwpPuyUNyMcN3KavW1QM6uUIDHYKwTQBf3PYpH8,550527
|
|
30
30
|
a_sync/exceptions.pyx,sha256=MGgpBVAESC-5TtEEECgs74ZIx5ToR6qi_stfmnCyoaQ,13201
|
|
@@ -32,7 +32,7 @@ a_sync/debugging.pyi,sha256=82AWVId_ghlFnIZkB3IQiEPqW9Yn3gKwknWNX6CCRLM,2257
|
|
|
32
32
|
a_sync/executor.py,sha256=bacluNlegqlioPxlcFOTaGiH2ylXJYkfBSsUMnQqOWQ,21401
|
|
33
33
|
a_sync/a_sync/_kwargs.pxd,sha256=RdEVKGXeBvq5_O4WkRXtjKdi8FV6oNPGhtJ-epUnr1M,92
|
|
34
34
|
a_sync/a_sync/abstract.pyx,sha256=OUp1CJ3NnBInC5agJ-6Ob_n6HfjkHY-f_6gPgZxaGx8,7864
|
|
35
|
-
a_sync/a_sync/flags.cpython-313-darwin.so,sha256=
|
|
35
|
+
a_sync/a_sync/flags.cpython-313-darwin.so,sha256=X3akKw7fRpU_fycsArWfd1AhdKBMiWjymsFVewpfueY,55832
|
|
36
36
|
a_sync/a_sync/base.pyi,sha256=t7AsaZzf74djHjkAA7Dnzf12sG1ppoxpwm0Iyn1GM3w,2326
|
|
37
37
|
a_sync/a_sync/_meta.py,sha256=PnmPbTSGOB3WMjJUj8FfhafrkGcWJ-SzjYeENfS37NI,9427
|
|
38
38
|
a_sync/a_sync/_flags.pyx,sha256=suOkvo37BZ9RIOdCpAdsXgk_98IOkn6jr1Ss5yunvdU,2806
|
|
@@ -42,8 +42,8 @@ a_sync/a_sync/_helpers.pxd,sha256=VG28VRW-jlTZJ-0H-W8Y8u5gw8zUVIbsb3nW-REI_Z4,11
|
|
|
42
42
|
a_sync/a_sync/config.py,sha256=siXP4CFLQ_vswuG5K-G6cOSjQ6xKc1gN7-XNHFN2tFU,6221
|
|
43
43
|
a_sync/a_sync/_flags.c,sha256=hxVtZT5faViQExnKIQnSBb-p9Rbqpxpor9dNxQH9dZA,217269
|
|
44
44
|
a_sync/a_sync/decorator.py,sha256=CdZuy_ql4oxzg4qbxCHTtHrGnMkxJKs1LwzlmLdX3Uc,17188
|
|
45
|
-
a_sync/a_sync/_kwargs.cpython-313-darwin.so,sha256=
|
|
46
|
-
a_sync/a_sync/_helpers.cpython-313-darwin.so,sha256=
|
|
45
|
+
a_sync/a_sync/_kwargs.cpython-313-darwin.so,sha256=FoBQQMlzT_NtzvlUnxPz2Vn6qGo0bTMl7vc65RkGzbg,105840
|
|
46
|
+
a_sync/a_sync/_helpers.cpython-313-darwin.so,sha256=JTmLISnkBzlqKwx-zIL2fvdZ_aMPFM-0FrUVByyzn3E,146656
|
|
47
47
|
a_sync/a_sync/property.c,sha256=xNyEG7-rehLJ5sSqjJopkWCkXvDf8CvT6ZAk_emBoJQ,1243816
|
|
48
48
|
a_sync/a_sync/_helpers.pyi,sha256=t2iBYRsG3qCfhzEfO6aG4KLQv_LWe8yjYDZ4RppnOak,319
|
|
49
49
|
a_sync/a_sync/method.pyx,sha256=gTyPQn1znZCsIHnqeXC2nPRoRNBrnpHTx7fAQwW9nEk,35131
|
|
@@ -54,25 +54,25 @@ a_sync/a_sync/__init__.py,sha256=P8AO0TBmYPW5BYVk0TohOwLq8jurpRKfXnaPO-qDMJw,220
|
|
|
54
54
|
a_sync/a_sync/function.c,sha256=12-cYu-_CbCPan-pW5N_4R-AeiUEkDOgyAgtjRZTp70,1692632
|
|
55
55
|
a_sync/a_sync/_descriptor.pyi,sha256=N77KA4DQbXUXKeAf-vTpAXc7E4Bk1d-Khtr7vjzwRwI,1343
|
|
56
56
|
a_sync/a_sync/_helpers.c,sha256=H3xMbljWjqkTByQmwyFkdJGoMXH_EeEQfHPtn9qeAng,550837
|
|
57
|
-
a_sync/a_sync/function.cpython-313-darwin.so,sha256=
|
|
57
|
+
a_sync/a_sync/function.cpython-313-darwin.so,sha256=eVhC4WXnCxBoIw7h1fNvT21Hf-lDK_XSlDMXlNDfjaA,384400
|
|
58
58
|
a_sync/a_sync/abstract.pyi,sha256=IGEh74mnvZECWpSr0bh-ZQeFc-6Q4cu9EefhEaDLp2c,5071
|
|
59
|
-
a_sync/a_sync/base.cpython-313-darwin.so,sha256=
|
|
60
|
-
a_sync/a_sync/abstract.cpython-313-darwin.so,sha256=
|
|
59
|
+
a_sync/a_sync/base.cpython-313-darwin.so,sha256=l8AVxUIsQKb8G9fcbJwcSqtkPsA4s408PXMMam-9OnE,141496
|
|
60
|
+
a_sync/a_sync/abstract.cpython-313-darwin.so,sha256=PVaqudFcD1ZBFcplHyfCdP2RwW-Q7vvlsT0XO1RJJuQ,122192
|
|
61
61
|
a_sync/a_sync/base.pyx,sha256=73vU-pr2XClsKLcGlQbhAhjLFHMoBQrb6UH-YuCBhxU,10603
|
|
62
|
-
a_sync/a_sync/_flags.cpython-313-darwin.so,sha256=
|
|
62
|
+
a_sync/a_sync/_flags.cpython-313-darwin.so,sha256=0MJO3jBgm8r-ko8UlKYjzuabjBcd--TiSjO1Ad4IyV8,76128
|
|
63
63
|
a_sync/a_sync/function.pxd,sha256=WLkHI94wFFFMoOwgEg3A83FIR_1h3ViZWENHE3VWHno,679
|
|
64
64
|
a_sync/a_sync/_descriptor.c,sha256=BIV7KxjkbqOuOsjuSy1Lspvhv4Z-kwhoYZp4fUlPvZQ,843727
|
|
65
65
|
a_sync/a_sync/method.pxd,sha256=3kcpKfsO6rtO8wFokzShcwlAeSKxy9WNq2t710zi8dw,123
|
|
66
66
|
a_sync/a_sync/property.pyx,sha256=qEFhqtYQhg2rsoDwXdfyVmtCfKvQa--OUkF89plRSek,27599
|
|
67
|
-
a_sync/a_sync/property.cpython-313-darwin.so,sha256=
|
|
67
|
+
a_sync/a_sync/property.cpython-313-darwin.so,sha256=j4Ahq7LZfL8PdG5RHzchO5t--df_DisPV2lC-K8AMgE,302048
|
|
68
68
|
a_sync/a_sync/singleton.py,sha256=WRJ9FEqeFB8T59NSOiLLcm-QmMCI0H7nwEpvDIUp9IQ,2492
|
|
69
69
|
a_sync/a_sync/abstract.c,sha256=my8pajUN_xUqEIJitvZ7ZN5Mxy8e4lJv-iXgV308oQE,461336
|
|
70
70
|
a_sync/a_sync/flags.c,sha256=pnoCgI2Cochd4fMayKEKI82lw8f83fwhhUkNajLvxJk,175737
|
|
71
71
|
a_sync/a_sync/method.c,sha256=t3BPxuFhK8z8ZODABEx1L_whq6JUTwPwoJkY-s7yjw4,1261576
|
|
72
72
|
a_sync/a_sync/method.pyi,sha256=DpzdpuYSi7wiZkkX9xB0pg1oFcCYxJbVrWj3J_ISo3M,17815
|
|
73
|
-
a_sync/a_sync/_descriptor.cpython-313-darwin.so,sha256=
|
|
73
|
+
a_sync/a_sync/_descriptor.cpython-313-darwin.so,sha256=ZQ17Y6T_Z31H4EzNuuFEYJNvPjczqveMSv7lDlBNPH4,208832
|
|
74
74
|
a_sync/a_sync/_helpers.pyx,sha256=rvsCXR7tvddUIymUQCSi4eGzNCstYi5zGAdLCTPaIFQ,5409
|
|
75
|
-
a_sync/a_sync/method.cpython-313-darwin.so,sha256=
|
|
75
|
+
a_sync/a_sync/method.cpython-313-darwin.so,sha256=frqLuzXKRmD20_crU9tisoWX_ItpFLTQsG-sqOMdQcA,319232
|
|
76
76
|
a_sync/a_sync/flags.pyx,sha256=PU_DAZzoXhn-Z-okbTu0p6stnwnKsSEn781TryRRs0E,2305
|
|
77
77
|
a_sync/a_sync/_flags.pxd,sha256=w8CBx5wDoCBRHFmeQOuVwWefDC3LP3zIWGaao_-y_uY,188
|
|
78
78
|
a_sync/a_sync/function.pyi,sha256=3F4BQplDW0IU5wDlkvc0T9n58qMQHtop3EPo1GYV0rg,17737
|
|
@@ -86,7 +86,7 @@ a_sync/a_sync/modifiers/manager.pxd,sha256=s7zw1kllYYGpe5uFETRIUFsgbVdtFM8jGh4Rx
|
|
|
86
86
|
a_sync/a_sync/modifiers/__init__.py,sha256=JXyupO5h2hICMd-ha642ttCEFib_gAA6v-Ll6cyHNCA,4159
|
|
87
87
|
a_sync/a_sync/modifiers/manager.pyx,sha256=PcyGpRnWgTZlPRukzPotwtUn43SYcbiR2TXaKSgEioI,9396
|
|
88
88
|
a_sync/a_sync/modifiers/manager.c,sha256=GiQBNW8VlS3IOx1EyS7HQ4njW7OGi90J83SPz7eYIbk,626521
|
|
89
|
-
a_sync/a_sync/modifiers/manager.cpython-313-darwin.so,sha256=
|
|
89
|
+
a_sync/a_sync/modifiers/manager.cpython-313-darwin.so,sha256=0ZjnkF5lJIVLVT05JLkEd6zMZw_jUPklUm0jgoxqwJU,152288
|
|
90
90
|
a_sync/a_sync/modifiers/limiter.py,sha256=WjO32P4vZLvyJnwpm2qFgqwRmCM7eEHxcdXzilzLlps,4303
|
|
91
91
|
a_sync/a_sync/modifiers/cache/memory.py,sha256=vON9K6K3nMkGphfUHCTrtURJUXZ3IE9B757wa-H1oFk,5335
|
|
92
92
|
a_sync/a_sync/modifiers/cache/__init__.py,sha256=SJlZ1EyyzBkYlWMU4XbiAlW9SCqCQbOAmDgVAP7CDN0,5532
|
|
@@ -94,10 +94,10 @@ a_sync/utils/repr.pyx,sha256=xdsVdK75Zi5pAoh-8qRG0q7F0ySAq1zDkksZw37FoL4,2632
|
|
|
94
94
|
a_sync/utils/__init__.py,sha256=Y6R-IcD5ROzp2Zs3ZMv3bapkcfOpJHlBeD838bntd-Q,3213
|
|
95
95
|
a_sync/utils/iterators.py,sha256=GkT2fgMVKDorT-BKPPOPOIDj5Zt4yl-5vAmpn4H5wGA,11055
|
|
96
96
|
a_sync/utils/repr.pyi,sha256=PWdsa6sF9_3nBqEgLaxtaHty7o7gwL--jPqvcelHY10,131
|
|
97
|
-
a_sync/utils/repr.cpython-313-darwin.so,sha256
|
|
97
|
+
a_sync/utils/repr.cpython-313-darwin.so,sha256=-_ZZzW9hhF9Etk-B-LagdwKKGFOHNQqB9ETJI0BCCyo,145400
|
|
98
98
|
a_sync/utils/repr.c,sha256=4HDcDzNN4_R5Z_QrhMy9kxWXK7iALDKpa--_D0k6_-Y,571751
|
|
99
99
|
a_sync/primitives/queue.py,sha256=k1ldYX7ni-W5vdVXRFrupyVD1JV5P6CYMqfndzPWwV8,33113
|
|
100
|
-
a_sync/primitives/_loggable.cpython-313-darwin.so,sha256=
|
|
100
|
+
a_sync/primitives/_loggable.cpython-313-darwin.so,sha256=YL2-ODPWZ2fxpojBjywix_5SfZX0Qjh_4eZITsHprm8,103392
|
|
101
101
|
a_sync/primitives/_loggable.pyi,sha256=MxE1kINwYiXBFq6tPSWppWs4hToR-6vfBZwIhGJ11z8,1934
|
|
102
102
|
a_sync/primitives/_debug.pyi,sha256=mcGGn_C9ICgn2mcP-cER1ps-q1pdei-2niu-fEQnFXQ,2175
|
|
103
103
|
a_sync/primitives/__init__.pxd,sha256=FIO-eD4HaJ259mz3XB6HE1YF4tDej6ojrxQ_kx-tMwM,38
|
|
@@ -107,34 +107,34 @@ a_sync/primitives/__init__.py,sha256=U5r-Do_TKR1FbfLEHuckiYs87QkN4HsYNZfunRhX52c
|
|
|
107
107
|
a_sync/primitives/_loggable.pxd,sha256=1YRkqc20KcPoTukbWXn7qpbZ8zA16X1h_84vadCqSPc,133
|
|
108
108
|
a_sync/primitives/_loggable.pyx,sha256=jxKSBCs4VlXuYC7LsxbUJw0FJInjBKOkEdBSoqCndxY,3003
|
|
109
109
|
a_sync/primitives/_debug.pyx,sha256=NH2hr-yQLz1pKnmleIpIeDVTy75KSguQpUiuoza_ahc,7849
|
|
110
|
-
a_sync/primitives/_debug.cpython-313-darwin.so,sha256=
|
|
110
|
+
a_sync/primitives/_debug.cpython-313-darwin.so,sha256=ZoWnU-4cnnn-CHILDfrZcte7UzJZSFTOoRPOETNls1U,149216
|
|
111
111
|
a_sync/primitives/_loggable.c,sha256=Us1P0zNcyclaIoWNOwRQp92ejJTqgX0aHyIdBBVb2DI,419940
|
|
112
112
|
a_sync/primitives/locks/prio_semaphore.pyi,sha256=w3xGj3-kdFEjw4k8vzt4TiWsG8j5KC6erXBNNrEhaL0,7644
|
|
113
|
-
a_sync/primitives/locks/event.pyx,sha256=
|
|
114
|
-
a_sync/primitives/locks/counter.cpython-313-darwin.so,sha256=
|
|
115
|
-
a_sync/primitives/locks/semaphore.pyx,sha256=
|
|
116
|
-
a_sync/primitives/locks/prio_semaphore.c,sha256=
|
|
113
|
+
a_sync/primitives/locks/event.pyx,sha256=PFQoQVZ9DozV2LOdKK-03fWpX_MrvBqxikKk4k3PjHs,6049
|
|
114
|
+
a_sync/primitives/locks/counter.cpython-313-darwin.so,sha256=goqpihxrOwzJqAc2RqJc25sxAUXy9sdpA4bsC5ejoB8,170512
|
|
115
|
+
a_sync/primitives/locks/semaphore.pyx,sha256=eQX6J5SdWK5qnXNPs6frO6BpQf9RuExNwZIjMlkNnHI,14965
|
|
116
|
+
a_sync/primitives/locks/prio_semaphore.c,sha256=xzwXUNqHvWCUuORdnEuia0oRE7PIYVj2a5dn0AvwXZw,1161447
|
|
117
117
|
a_sync/primitives/locks/__init__.pxd,sha256=DuPhDRldnCwqBUxgo9V5K0GmA8BWLf5fC266ujDQ9pc,302
|
|
118
|
-
a_sync/primitives/locks/prio_semaphore.pxd,sha256=
|
|
118
|
+
a_sync/primitives/locks/prio_semaphore.pxd,sha256=SZXX1jH12m9PKH9VmrKpLdTctY0c_wYS75YGWoDdlzE,1041
|
|
119
119
|
a_sync/primitives/locks/counter.pyx,sha256=H_3LN50-zDvBSgHoKXXOMlUKs78aZSFDhu8gQrhWV5Y,9055
|
|
120
120
|
a_sync/primitives/locks/__init__.py,sha256=XPiWbxxPyaCC-NnfNm42up2qf61LdqFgzGkq082DL1Q,436
|
|
121
121
|
a_sync/primitives/locks/counter.pxd,sha256=_HoPXPMTRY3Gw3GPUB2jAx7lUpjJ4QyO75YiR_BehAQ,409
|
|
122
|
-
a_sync/primitives/locks/semaphore.c,sha256=
|
|
123
|
-
a_sync/primitives/locks/event.c,sha256=
|
|
122
|
+
a_sync/primitives/locks/semaphore.c,sha256=PdVvYfEJ-gng0U32kj4yNJb_GtsTVCiGl-b5a-QhfDM,1135566
|
|
123
|
+
a_sync/primitives/locks/event.c,sha256=1KiOCYD4Y0YwNJ42fMo0oSnpdXmpmpeqS6ckoOOcvL8,655928
|
|
124
124
|
a_sync/primitives/locks/event.pyi,sha256=cWK5LPzpbERpaXjYh5LqDcDuJDIexJjhP606mYMbKBw,1456
|
|
125
|
-
a_sync/primitives/locks/prio_semaphore.pyx,sha256=
|
|
125
|
+
a_sync/primitives/locks/prio_semaphore.pyx,sha256=DAgcufTedvvPBj5BfM56chjplEi0QUd1qAV49bSb-oM,22096
|
|
126
126
|
a_sync/primitives/locks/semaphore.pyi,sha256=ynHIA0k9HMzbsTfhMAwCEfpZSECVhXxhcNAwwQmsSlI,5975
|
|
127
127
|
a_sync/primitives/locks/counter.c,sha256=MiG2k0PhWJHpC5NBh87GJbLBYOjOhzuf9uGXb86nPjc,713260
|
|
128
|
-
a_sync/primitives/locks/event.cpython-313-darwin.so,sha256=
|
|
129
|
-
a_sync/primitives/locks/semaphore.cpython-313-darwin.so,sha256=
|
|
130
|
-
a_sync/primitives/locks/prio_semaphore.cpython-313-darwin.so,sha256=
|
|
128
|
+
a_sync/primitives/locks/event.cpython-313-darwin.so,sha256=Njds8ofiNdxFUe22Bd6RPYppUn3EnWgNX6TzuQnmEvU,167672
|
|
129
|
+
a_sync/primitives/locks/semaphore.cpython-313-darwin.so,sha256=TJMPBg_SreK3NhANGh5XLnmB9GQYnxAy46YfMOTKHro,257408
|
|
130
|
+
a_sync/primitives/locks/prio_semaphore.cpython-313-darwin.so,sha256=OeCclu6JQR-vKDUz7wTJCd3G66SUVlA16s7NoGeXaw0,258200
|
|
131
131
|
a_sync/primitives/locks/semaphore.pxd,sha256=zy-PgktLUsFaXxvrSbB3m6gxisgzchCpKrcX8Zzwq_I,585
|
|
132
132
|
a_sync/primitives/locks/event.pxd,sha256=Wk1wLD8P6Nml1mzrRM6H34bD06LZWovjEYKnRhGcXE4,696
|
|
133
133
|
a_sync/primitives/locks/counter.pyi,sha256=d83iZwFj5mK9fIohh7n1uRdRiGAnfi2FNMZSyKtli9A,5077
|
|
134
134
|
a_sync/sphinx/__init__.py,sha256=UvdsakVmkn0Lw4vEd3jA3_Acymde95-78o87lel8ikk,49
|
|
135
135
|
a_sync/sphinx/ext.py,sha256=E93N5AmGcfGksN1J3oUsvewJZVZ3dNYcr0mwKJQ3ALk,8917
|
|
136
136
|
a_sync/async_property/proxy.c,sha256=nMXGrx7jZNuTdlhfQC4DmWWTZgDe6DRlednm07ozysA,1514493
|
|
137
|
-
a_sync/async_property/cached.cpython-313-darwin.so,sha256=
|
|
137
|
+
a_sync/async_property/cached.cpython-313-darwin.so,sha256=UUuNvmAAi9xVWTIYeDPX6VA4SnLxZ2SRPcTs1Cr5qX8,206368
|
|
138
138
|
a_sync/async_property/proxy.pyi,sha256=4GCwklkt5bjp2ADP6SQtVOkL6E9xiyBAf_twX5Cvatg,4218
|
|
139
139
|
a_sync/async_property/cached.pyi,sha256=kL7Cvn7z26R7JROFDQ22GaWll-TvOL79Q-OeQ2oaqbo,1814
|
|
140
140
|
a_sync/async_property/cached.c,sha256=70ERIMLrNtYymVNVB_dThQUQFH7a7LwUzeDM8oE8znc,858352
|
|
@@ -144,34 +144,34 @@ a_sync/async_property/proxy.pxd,sha256=fyc5IGOcwNzBP6XsG3vYKjbLP6dOfSVCtGb1EEWDx
|
|
|
144
144
|
a_sync/async_property/__init__.py,sha256=L0JYdB7p3RLDRVNExPKl9MtcHaPLIqo5lnpGmHVUI9E,63
|
|
145
145
|
a_sync/async_property/proxy.pyx,sha256=0_qGYnr6ZyBtQQGIRI2cMB_o0Bz7RZxJKwuVQGFTgTI,13295
|
|
146
146
|
a_sync/async_property/cached.pyx,sha256=4UoHk6yACkpwKjD_DBHLMb2JIAAhKVmhDGU7WZYg-Cc,6314
|
|
147
|
-
a_sync/async_property/proxy.cpython-313-darwin.so,sha256
|
|
148
|
-
a_sync/asyncio/create_task.cpython-313-darwin.so,sha256=
|
|
147
|
+
a_sync/async_property/proxy.cpython-313-darwin.so,sha256=-p_LRc_Lv8NW3Hwcb7QiKooHYAfzh6p8c-BQAvLcIN8,350328
|
|
148
|
+
a_sync/asyncio/create_task.cpython-313-darwin.so,sha256=9Wky_2nbym8ZODvTAlaNTVPAU8pYq028FfSLhR9vmpk,148752
|
|
149
149
|
a_sync/asyncio/sleep.pyx,sha256=kjNeRimAfMZB6vJs7t-SbtMgnRqhybO3cZ7uijkosJs,1273
|
|
150
150
|
a_sync/asyncio/as_completed.pxd,sha256=mISE2jdb2jOS0q3TKg0F_k-Zf-d3hzdBNKU1PT-Tn40,162
|
|
151
|
-
a_sync/asyncio/sleep.cpython-313-darwin.so,sha256=
|
|
151
|
+
a_sync/asyncio/sleep.cpython-313-darwin.so,sha256=OS33d6SDG6pmGIDhFMpE02a0xWmiLCnfqtd-7y95HEw,83608
|
|
152
152
|
a_sync/asyncio/igather.c,sha256=X7Pcp1euFrTaUY3fkHHfaYmYexKIPapI9I_NmFYpMG8,485487
|
|
153
|
-
a_sync/asyncio/create_task.pyx,sha256=
|
|
154
|
-
a_sync/asyncio/create_task.c,sha256=
|
|
153
|
+
a_sync/asyncio/create_task.pyx,sha256=tMvH96pSYgxQamU5Vfaeq-5SdyC3aBXtBdi-PF5CwrA,8597
|
|
154
|
+
a_sync/asyncio/create_task.c,sha256=KpPjTlsDn2GHSRAxB4BwQNCOSC8sWHSpJhKZkpO08Sw,606164
|
|
155
155
|
a_sync/asyncio/igather.pxd,sha256=M9hMUtgp6118pa0ddR9daQubvnceefnbt4pbvEl0doE,71
|
|
156
156
|
a_sync/asyncio/igather.pyi,sha256=ms6FY78h_8D3aiuPsPo0h3AheTzLGy-73ja-s2gmW_A,201
|
|
157
157
|
a_sync/asyncio/gather.pyi,sha256=7P_GapnZAz4z3xDZeg4wKpM1zD-6nVd15tRzG6b_jKk,4515
|
|
158
158
|
a_sync/asyncio/__init__.pxd,sha256=Hsy-wTlG1iLWv4mNIRQ9g2rs_8w5ooVIgFFe6VnL7nc,336
|
|
159
159
|
a_sync/asyncio/__init__.py,sha256=Z-_qJgdLFqIacrKRABlk64c1aroLUmgKAqXTeE_GQfU,6333
|
|
160
160
|
a_sync/asyncio/as_completed.pyi,sha256=-VdtfMlX0XdkqJbJm8C0gEAi_BfRbkz3Xkdver6vHs4,3753
|
|
161
|
-
a_sync/asyncio/as_completed.cpython-313-darwin.so,sha256
|
|
161
|
+
a_sync/asyncio/as_completed.cpython-313-darwin.so,sha256=p4B0u96wnk_LTYGaFt3uHakdgyRRbYhC2FDtNuNTMvY,187920
|
|
162
162
|
a_sync/asyncio/sleep.pyi,sha256=ab8OtiZm4Py0-sVQA2pzGVZiHUoTItkJG_Nd02xduuE,537
|
|
163
163
|
a_sync/asyncio/sleep.c,sha256=vrlY1_8dMSyk1ggO6tk5Td43gujjXiJAt2FFUgMMpoU,342937
|
|
164
164
|
a_sync/asyncio/as_completed.c,sha256=jbM1c_UmHWd_oXnWAYNDDNz1kKCRw0Ev8vBOzxri52A,735119
|
|
165
|
-
a_sync/asyncio/igather.cpython-313-darwin.so,sha256=
|
|
165
|
+
a_sync/asyncio/igather.cpython-313-darwin.so,sha256=DTw1jmdizcc3alIhxUF7d-HLmJGkxZqo5nySp1NyDjI,120384
|
|
166
166
|
a_sync/asyncio/create_task.pyi,sha256=5H2z4k_2dGG2QTGjGEgP1N6ITuClYYWzkPbzaeQwKks,1864
|
|
167
167
|
a_sync/asyncio/igather.pyx,sha256=TctS1kLzaYztLrZJmLwIOOvJTthKiEwsy-AaW1ObnKg,6325
|
|
168
168
|
a_sync/asyncio/gather.pyx,sha256=4ALHvhJPQsNtw7b9dsbhwmKpXEbiRzOCjMqagi3sTXs,8566
|
|
169
169
|
a_sync/asyncio/gather.c,sha256=MLhPvLSGGCpxgMNtiA8Xcx3nniDOLzMSVYnFbSFWukE,637555
|
|
170
170
|
a_sync/asyncio/create_task.pxd,sha256=x-sZVX-26NoqxYb5mH33uh2Mg-3AqqdYGXx4Ai7xZwU,143
|
|
171
|
-
a_sync/asyncio/gather.cpython-313-darwin.so,sha256=
|
|
171
|
+
a_sync/asyncio/gather.cpython-313-darwin.so,sha256=q0Tl11Fz3w73EjmtJvoP_erBzcPkGxA6L_Al2_jpk3c,167264
|
|
172
172
|
a_sync/asyncio/as_completed.pyx,sha256=ar0gJ3iN6-4Jw8xy6i7KVJ54RnAGt1JWE85Wh6kPF48,9052
|
|
173
|
-
ez_a_sync-0.32.
|
|
174
|
-
ez_a_sync-0.32.
|
|
175
|
-
ez_a_sync-0.32.
|
|
176
|
-
ez_a_sync-0.32.
|
|
177
|
-
ez_a_sync-0.32.
|
|
173
|
+
ez_a_sync-0.32.13.dist-info/RECORD,,
|
|
174
|
+
ez_a_sync-0.32.13.dist-info/WHEEL,sha256=VIOxLMMkshvS_PbEukmsYu1sg_oxjW5SBJ1JnbuDdDk,136
|
|
175
|
+
ez_a_sync-0.32.13.dist-info/top_level.txt,sha256=ew2xVyFeZE_a5XMEL64h7-vJIbaBQieaFcvBAWUpU_s,7
|
|
176
|
+
ez_a_sync-0.32.13.dist-info/METADATA,sha256=UR-xEgaccDdRssgXeftsqT0ChtluUZW0hDBbFW03HW0,13197
|
|
177
|
+
ez_a_sync-0.32.13.dist-info/licenses/LICENSE.txt,sha256=1on6-17OUMlja6vSPTcmlmeT_DwujCZJijYxaplBvZk,1075
|
|
File without changes
|
|
File without changes
|