ez-a-sync 0.32.23__cp39-cp39-macosx_11_0_arm64.whl → 0.32.25__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.

Files changed (39) hide show
  1. a_sync/_smart.cpython-39-darwin.so +0 -0
  2. a_sync/a_sync/_descriptor.cpython-39-darwin.so +0 -0
  3. a_sync/a_sync/_flags.cpython-39-darwin.so +0 -0
  4. a_sync/a_sync/_helpers.cpython-39-darwin.so +0 -0
  5. a_sync/a_sync/_kwargs.cpython-39-darwin.so +0 -0
  6. a_sync/a_sync/abstract.cpython-39-darwin.so +0 -0
  7. a_sync/a_sync/base.cpython-39-darwin.so +0 -0
  8. a_sync/a_sync/flags.cpython-39-darwin.so +0 -0
  9. a_sync/a_sync/function.c +1964 -1962
  10. a_sync/a_sync/function.cpython-39-darwin.so +0 -0
  11. a_sync/a_sync/function.pyx +3 -1
  12. a_sync/a_sync/method.cpython-39-darwin.so +0 -0
  13. a_sync/a_sync/modifiers/manager.cpython-39-darwin.so +0 -0
  14. a_sync/a_sync/property.cpython-39-darwin.so +0 -0
  15. a_sync/async_property/cached.cpython-39-darwin.so +0 -0
  16. a_sync/async_property/proxy.cpython-39-darwin.so +0 -0
  17. a_sync/asyncio/as_completed.cpython-39-darwin.so +0 -0
  18. a_sync/asyncio/create_task.c +5960 -6182
  19. a_sync/asyncio/create_task.cpython-39-darwin.so +0 -0
  20. a_sync/asyncio/create_task.pyx +38 -43
  21. a_sync/asyncio/gather.cpython-39-darwin.so +0 -0
  22. a_sync/asyncio/igather.cpython-39-darwin.so +0 -0
  23. a_sync/asyncio/sleep.cpython-39-darwin.so +0 -0
  24. a_sync/debugging.cpython-39-darwin.so +0 -0
  25. a_sync/exceptions.cpython-39-darwin.so +0 -0
  26. a_sync/functools.cpython-39-darwin.so +0 -0
  27. a_sync/iter.cpython-39-darwin.so +0 -0
  28. a_sync/primitives/_debug.cpython-39-darwin.so +0 -0
  29. a_sync/primitives/_loggable.cpython-39-darwin.so +0 -0
  30. a_sync/primitives/locks/counter.cpython-39-darwin.so +0 -0
  31. a_sync/primitives/locks/event.cpython-39-darwin.so +0 -0
  32. a_sync/primitives/locks/prio_semaphore.cpython-39-darwin.so +0 -0
  33. a_sync/primitives/locks/semaphore.cpython-39-darwin.so +0 -0
  34. a_sync/utils/repr.cpython-39-darwin.so +0 -0
  35. {ez_a_sync-0.32.23.dist-info → ez_a_sync-0.32.25.dist-info}/METADATA +1 -1
  36. {ez_a_sync-0.32.23.dist-info → ez_a_sync-0.32.25.dist-info}/RECORD +39 -39
  37. {ez_a_sync-0.32.23.dist-info → ez_a_sync-0.32.25.dist-info}/WHEEL +0 -0
  38. {ez_a_sync-0.32.23.dist-info → ez_a_sync-0.32.25.dist-info}/licenses/LICENSE.txt +0 -0
  39. {ez_a_sync-0.32.23.dist-info → ez_a_sync-0.32.25.dist-info}/top_level.txt +0 -0
@@ -128,14 +128,17 @@ cdef object ccreate_task(object coro, str name, bint skip_gc_until_done, bint lo
128
128
  persisted = task_factory(loop, persisted)
129
129
  if name:
130
130
  __set_task_name(persisted, name)
131
-
131
+
132
+ persisted.add_done_callback(_persisted_task_callback)
132
133
  _persisted_tasks.add(persisted)
133
134
 
134
135
  if log_destroy_pending is False:
135
136
  task._log_destroy_pending = False
136
137
 
137
- if _persisted_tasks:
138
- __prune_persisted_tasks()
138
+ if _exceptions:
139
+ for task, exc in _exceptions:
140
+ __log_exception(exc)
141
+ raise exc.with_traceback(exc.__traceback__)
139
142
 
140
143
  return task
141
144
 
@@ -145,7 +148,39 @@ cdef inline void __set_task_name(object task, str name):
145
148
  set_name(name)
146
149
 
147
150
 
151
+ def _persisted_task_callback(task: Task[Any]) -> None:
152
+ """Remove completed tasks from the set of persisted tasks.
153
+
154
+ This callback function checks each persisted task as it completes. If a task has a :class:`PersistedTaskException`,
155
+ it logs the exception before discarding the task. If it has any other type of Exception, it adds it to `_exceptions`
156
+ to be raised later.
157
+
158
+ See Also:
159
+ - :class:`PersistedTaskException`
160
+ """
161
+ cdef dict context
162
+ if task.cancelled():
163
+ pass
164
+ elif exc := task.exception():
165
+ if isinstance(exc, PersistedTaskException):
166
+ # we have to manually log the traceback that asyncio would usually log
167
+ # since we already got the exception from the task and the usual handler will now not run
168
+ context = {
169
+ "message": f"{task.__class__.__name__} exception was never retrieved",
170
+ "exception": exc,
171
+ "future": task,
172
+ }
173
+ if task._source_traceback:
174
+ context["source_traceback"] = task._source_traceback
175
+ task._loop.call_exception_handler(context)
176
+ else:
177
+ # force exceptions related to this lib to bubble up
178
+ _exceptions.add((task, exc))
179
+ _persisted_tasks.discard(task)
180
+
181
+
148
182
  cdef public set[object] _persisted_tasks = set()
183
+ cdef public set[tuple[object, object]] _exceptions = set()
149
184
 
150
185
  cdef object __await
151
186
 
@@ -180,46 +215,6 @@ async def __await(awaitable: Awaitable[T]) -> T:
180
215
  cdef object __log_exception = logger.exception
181
216
 
182
217
 
183
- cdef void __prune_persisted_tasks():
184
- """Remove completed tasks from the set of persisted tasks.
185
-
186
- This function checks each task in the persisted tasks set. If a task is done and has an exception,
187
- it logs the exception and raises it if it's not a :class:`PersistedTaskException`. It also logs the traceback
188
- manually since the usual handler will not run after retrieving the exception.
189
-
190
- See Also:
191
- - :class:`PersistedTaskException`
192
- """
193
- cdef object task
194
- cdef dict context
195
- cdef list done = list(filter(_is_done, _persisted_tasks))
196
- if not done:
197
- return
198
- _persisted_tasks.difference_update(done)
199
- for task in done:
200
- exc = _get_exception(task)
201
- if exc is None:
202
- continue
203
- # force exceptions related to this lib to bubble up
204
- if not isinstance(exc, PersistedTaskException):
205
- __log_exception(exc)
206
- raise exc
207
- # we have to manually log the traceback that asyncio would usually log
208
- # since we already got the exception from the task and the usual handler will now not run
209
- context = {
210
- "message": f"{task.__class__.__name__} exception was never retrieved",
211
- "exception": exc,
212
- "future": task,
213
- }
214
- if task._source_traceback:
215
- context["source_traceback"] = task._source_traceback
216
- task._loop.call_exception_handler(context)
217
-
218
-
219
- cdef inline bint _is_done(fut: Future):
220
- return PyUnicode_CompareWithASCIIString(fut._state, b"PENDING") != 0
221
-
222
-
223
218
  cdef object _get_exception(fut: Future):
224
219
  """Return the exception that was set on this future.
225
220
 
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ez_a_sync
3
- Version: 0.32.23
3
+ Version: 0.32.25
4
4
  Summary: A library that makes it easy to define objects that can be used for both sync and async use cases.
5
5
  Home-page: https://github.com/BobTheBuidler/a-sync
6
6
  Author: BobTheBuidler
@@ -1,17 +1,17 @@
1
1
  a_sync/debugging.c,sha256=RfJnHds7wZdPmWg5PYc26nqjOQijqdOMMbGk43tvUhU,589339
2
- a_sync/debugging.cpython-39-darwin.so,sha256=UIyG12BhRGnpZhbQPrjOhk9lZ26vTCpWMdIW0FkNnQo,149680
2
+ a_sync/debugging.cpython-39-darwin.so,sha256=O59RBBLTl6kq5vHPu1CxFMulZr-R5puGpAPB8vO6pYY,149680
3
3
  a_sync/task.py,sha256=lHeGEPyEoUPNCTMGBGxvJxTZSu6KOqN5VC0rIf_slIY,35049
4
- a_sync/exceptions.cpython-39-darwin.so,sha256=0xfp1UOOmBBSamgxkAtQ8zwC_f6bDBs5Sbq-vjbmZLw,158464
4
+ a_sync/exceptions.cpython-39-darwin.so,sha256=Ejv_C0hp7L1kTAeW0tlPVgM7yvRgBzwz7p0vbuIY4c0,158464
5
5
  a_sync/_smart.c,sha256=C2Rc1BCn_grEoA4w9rjYiCafuTMyr3toZAdfLKVqlY8,921790
6
6
  a_sync/_smart.pyi,sha256=mUQwUiiSsMsbtJTKdXm076ua5B2A9USaKgjZq1Se_ZQ,5390
7
7
  a_sync/functools.pyi,sha256=HGM208HKg5FOUbu9CbfnIOx3sdQB1OwO1t-0tZKd-T4,1404
8
8
  a_sync/_typing.py,sha256=x24VIVjxz8sUWPmQR072pHAQxJO769Nn02f3eakFpe8,6850
9
9
  a_sync/ENVIRONMENT_VARIABLES.py,sha256=YgIB8mQRqQBLbD3DdwMjx4ylqO8pK3GUvSNCerWJzx8,1280
10
- a_sync/_smart.cpython-39-darwin.so,sha256=iOPg4TLwc05ZHPJTeRmXML9UZRGQmgteq5O_gpD3SD4,208520
10
+ a_sync/_smart.cpython-39-darwin.so,sha256=lQ4oRQ-hmXVn8LvZKzjGL8718lcLifxDw6M44hdPNSU,208520
11
11
  a_sync/iter.pyx,sha256=TKzdMQkI74oKdgW-Us1WSgE5_KdS_7dOUykAmTHiXgU,37486
12
12
  a_sync/__init__.pxd,sha256=ol4jqkvuweaaU8GQU_Mq9rak8IIsagYTdhYhbKK74ac,81
13
13
  a_sync/functools.pxd,sha256=hhygzVpa5tXnDWR1pi_WLkOBd_1mC60K3279wYFEfA8,187
14
- a_sync/iter.cpython-39-darwin.so,sha256=d8jD0Av5p3IEzbAcbbODKKw-EEWflQbtGJHgyNyl9TM,408456
14
+ a_sync/iter.cpython-39-darwin.so,sha256=0IUk-_SPxAbgc7WHwb3vPZ3hHN-O_YqGBTWHCiRcIPM,408456
15
15
  a_sync/_smart.pxd,sha256=3FlPqSvAtmGXIDFzfm7wpkvL6xt8z8w-vwow4Lura2g,76
16
16
  a_sync/exceptions.pyi,sha256=NnBEKUBzBCl0kLj75ukwyQeWXjwPSkDg-NxKsXh-Ans,10834
17
17
  a_sync/__init__.py,sha256=lgwXsFYALBp0ORHRLKlpfPE79GIqbhR_MP8JbZStBGc,5750
@@ -20,7 +20,7 @@ a_sync/aliases.py,sha256=TbLyuLeFfJEmcC5-NP6h4DQ9QXlQjGny2NUP_x1tflw,212
20
20
  a_sync/_smart.pyx,sha256=88-mSxJLUHoF_4d7re18QUy6iwV7Y7mcPjNp6MYaviU,19828
21
21
  a_sync/functools.c,sha256=KwvIpLg4DT2z4P-VlvJLL2pR3CeWdQslyKLOY4xrQlI,450421
22
22
  a_sync/functools.pyx,sha256=F-Vp5JrhEt4jaFQDx48FadI7NGLlPfoIPWRWHTQob0Q,4837
23
- a_sync/functools.cpython-39-darwin.so,sha256=HLRss3v0yWoN_5LsOdDkZYCWLdE8nqQ7HF9sZa8zqdw,121904
23
+ a_sync/functools.cpython-39-darwin.so,sha256=bbesBxNXtRvfGG7oXQ53xDAvEDBjboQR42DkwTOd928,121904
24
24
  a_sync/iter.c,sha256=WS1z9wYxIBs9XcQBsfZnQCmDdkM5GqM-AbVZR-4-4Bk,1617426
25
25
  a_sync/iter.pxd,sha256=VQKDAzm1M4snbrL9vwhU2zl04H4LeJrWtqksw6yGWOc,427
26
26
  a_sync/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -40,28 +40,28 @@ a_sync/a_sync/property.pyi,sha256=GWXCWpJBa_qxBYfbv_Lmt02Md8WK9nJYTu7blO4O2ew,13
40
40
  a_sync/a_sync/_helpers.pxd,sha256=VG28VRW-jlTZJ-0H-W8Y8u5gw8zUVIbsb3nW-REI_Z4,118
41
41
  a_sync/a_sync/config.py,sha256=siXP4CFLQ_vswuG5K-G6cOSjQ6xKc1gN7-XNHFN2tFU,6221
42
42
  a_sync/a_sync/_flags.c,sha256=hxVtZT5faViQExnKIQnSBb-p9Rbqpxpor9dNxQH9dZA,217269
43
- a_sync/a_sync/property.cpython-39-darwin.so,sha256=IjzmzcRMdC54HlfBum9kLyURHptEmHoEt2-32Uc3pw8,301568
44
- a_sync/a_sync/_descriptor.cpython-39-darwin.so,sha256=fI4XcR4pe26d92_cBJM-RPZsUlOKvMiwgSGk5el-21c,208640
45
- a_sync/a_sync/function.cpython-39-darwin.so,sha256=NA0HOKaVFj0oqI3jwlBQl-Rec2eZjvVaKY7EEoewTTg,385504
46
- a_sync/a_sync/_flags.cpython-39-darwin.so,sha256=gLNIJGi3Hcj4XVp8mvlEnbwwTMTcFUq35vYw5F3KxH4,76360
43
+ a_sync/a_sync/property.cpython-39-darwin.so,sha256=ycLXZq0cHFElxjuIIcedOlZHwl1Zf_EsMRZaMN1AmSk,301568
44
+ a_sync/a_sync/_descriptor.cpython-39-darwin.so,sha256=3iW3VHrofL7d6_o3azo_HM0bHEPmqNSMk60MY76fbgA,208640
45
+ a_sync/a_sync/function.cpython-39-darwin.so,sha256=hbZchEjAvwuprPQY0EzoqDLQfNBDUcapa9Z2y3xBr_g,385568
46
+ a_sync/a_sync/_flags.cpython-39-darwin.so,sha256=CjSsD1pbBprXjAGtVJnpQ43DGOLH8X0SrNIRfD45CUg,76360
47
47
  a_sync/a_sync/decorator.py,sha256=mCSp2KxOsPObANAwR6VK4UzhuelxAOwPDGQ8-jxe8dk,19750
48
- a_sync/a_sync/method.cpython-39-darwin.so,sha256=SKtFPKA7KriYOPnetm_S890NRJrhZYDpIeRJiqrtzjc,342168
48
+ a_sync/a_sync/method.cpython-39-darwin.so,sha256=cIUbGQPRlfYcM8RbFE3R1HWcYFAvgILx0LBaQrL6CrI,342168
49
49
  a_sync/a_sync/property.c,sha256=gJra9kx2XTDD_9tLy-xvQOqYvgXj2f5o4zDZMX9qMbA,1248760
50
- a_sync/a_sync/flags.cpython-39-darwin.so,sha256=trl530JRD4_CnZ4PSog9MHwdqSY4Oh64wUhpgZArYXk,56232
51
- a_sync/a_sync/abstract.cpython-39-darwin.so,sha256=Fkbewg9cYH89q0NtG5EsFcxQKK7bGUc0LIiPhG9YAkU,122288
50
+ a_sync/a_sync/flags.cpython-39-darwin.so,sha256=Tzqq9gXoGVM8xkt0_C3DBem9tz8gNHvB10B0W0mR_3s,56232
51
+ a_sync/a_sync/abstract.cpython-39-darwin.so,sha256=5F8aE60zKtmv-OKIdYMlk7rL6skq4r7PSAD8T0IKJ30,122288
52
52
  a_sync/a_sync/_helpers.pyi,sha256=t2iBYRsG3qCfhzEfO6aG4KLQv_LWe8yjYDZ4RppnOak,319
53
53
  a_sync/a_sync/method.pyx,sha256=2asS_Ej5q6-BZ9T8JYqXjLOaQ9-n2SBcmXaAvSoJgps,36146
54
54
  a_sync/a_sync/flags.pyi,sha256=PPAqrtJOvabVudb_yT32yZ95PP15uzzuXD2NirkWqTw,2229
55
- a_sync/a_sync/function.pyx,sha256=OIsVd51LoyePmekZiZ5UaeHbY9ABLZDpLuuCyoIY1-M,46257
55
+ a_sync/a_sync/function.pyx,sha256=9btAdzY428QkPd7ggQpomhaD7h8BCdzjTvhT4ayw7-g,46400
56
56
  a_sync/a_sync/base.c,sha256=H5myWP3tyqTOkIR3692XiDibekzJlCJ0XA-QeL8u7ZI,562178
57
57
  a_sync/a_sync/__init__.py,sha256=P8AO0TBmYPW5BYVk0TohOwLq8jurpRKfXnaPO-qDMJw,2200
58
- a_sync/a_sync/function.c,sha256=G0iXdFKURVdBDDOND6ZI1mEy29npz4O5nh9B1aEx114,1715536
58
+ a_sync/a_sync/function.c,sha256=ckfw4ew9HfhXYRfD7Y12H64qzwFXjOXb-59er14ugg4,1715759
59
59
  a_sync/a_sync/_descriptor.pyi,sha256=N77KA4DQbXUXKeAf-vTpAXc7E4Bk1d-Khtr7vjzwRwI,1343
60
60
  a_sync/a_sync/_helpers.c,sha256=jlTq1V_AHGwTlo53o-NXmSxDquWj2_ZqmA1U900L3Ys,551235
61
- a_sync/a_sync/base.cpython-39-darwin.so,sha256=n9kxZts3DboQppZUgiwjaeV4UZ6wD4jBsgvaTQ2GobY,141720
62
- a_sync/a_sync/_helpers.cpython-39-darwin.so,sha256=k_vHUDdi9hrbrrg2X0LCwSPrPQVfJA5maJyGFITTdPo,146096
61
+ a_sync/a_sync/base.cpython-39-darwin.so,sha256=PHm2fO9uFkQxE_8U8ksesX1Qh_4npZCxYpTHfh48bcg,141720
62
+ a_sync/a_sync/_helpers.cpython-39-darwin.so,sha256=E--Wc-sYwHo7uaWwhIs6oxqgQV0-tohEW9Rm8i5dKeQ,146096
63
63
  a_sync/a_sync/abstract.pyi,sha256=IGEh74mnvZECWpSr0bh-ZQeFc-6Q4cu9EefhEaDLp2c,5071
64
- a_sync/a_sync/_kwargs.cpython-39-darwin.so,sha256=zzLDutCqjFDGPOH9jb3869hbz3bBClqywYn6utANAX4,105696
64
+ a_sync/a_sync/_kwargs.cpython-39-darwin.so,sha256=bit06wAY_gsiaqPC3dCjTIjGX7SA5V-kGldj67-KsKo,105696
65
65
  a_sync/a_sync/base.pyx,sha256=73vU-pr2XClsKLcGlQbhAhjLFHMoBQrb6UH-YuCBhxU,10603
66
66
  a_sync/a_sync/function.pxd,sha256=QOGVstj2s4oQy18QwjCy--eu4pOlheVwWg3oiT2KDno,830
67
67
  a_sync/a_sync/_descriptor.c,sha256=Q2O12TGkhzGShoRS4E5RSBiOUoPsoZWuEQ4_gWnCcpA,844125
@@ -80,7 +80,7 @@ a_sync/a_sync/_kwargs.c,sha256=blxZEu_yTOZAAn1aARwbJlTKoSgC3ojhSWeGgG6Y6ws,40523
80
80
  a_sync/a_sync/_kwargs.pyx,sha256=0hHXMlOpJmtNJ7yApnwEr7U_sub5yrOuZbSn_oBMxwk,1975
81
81
  a_sync/a_sync/_descriptor.pyx,sha256=jlQ8VgBmUB7fMUBsb3cIqyREmspkTgLQv5jZNqowkwg,13602
82
82
  a_sync/a_sync/modifiers/manager.pyi,sha256=oSMpBaZJPxzqaAyLT8ikA1DNHvyPRVqVIXrL0EvDe4A,6222
83
- a_sync/a_sync/modifiers/manager.cpython-39-darwin.so,sha256=ubTHS68U7boL8To2Prmi9ZOYkBqSovGsexnIA59Jbm0,168944
83
+ a_sync/a_sync/modifiers/manager.cpython-39-darwin.so,sha256=c9yXvhwn5oqfRpk9YLrU7eMv-mlotufdv75hXXv9I7c,168944
84
84
  a_sync/a_sync/modifiers/__init__.pxd,sha256=17tPpMY2ByVbMGIpI5kiP3WX8V9IM5ZHJp0Y3eT6LvE,60
85
85
  a_sync/a_sync/modifiers/semaphores.py,sha256=V1_jjxwuXq55y6Lv4yP4mymVj5AOCMIZXSkaZSKwEdw,6916
86
86
  a_sync/a_sync/modifiers/manager.pxd,sha256=s7zw1kllYYGpe5uFETRIUFsgbVdtFM8jGh4RxZgm25M,183
@@ -91,7 +91,7 @@ a_sync/a_sync/modifiers/limiter.py,sha256=WjO32P4vZLvyJnwpm2qFgqwRmCM7eEHxcdXzil
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
93
93
  a_sync/utils/repr.pyx,sha256=xdsVdK75Zi5pAoh-8qRG0q7F0ySAq1zDkksZw37FoL4,2632
94
- a_sync/utils/repr.cpython-39-darwin.so,sha256=ykhmkTEBL81MzifaR52t4xpV8yNuh7-uLzIS54od2LU,145400
94
+ a_sync/utils/repr.cpython-39-darwin.so,sha256=EvuMwHu9GjCPhAWyYVNNTjEN-wcmjuepboV5Eeo4qdQ,145400
95
95
  a_sync/utils/__init__.py,sha256=Y6R-IcD5ROzp2Zs3ZMv3bapkcfOpJHlBeD838bntd-Q,3213
96
96
  a_sync/utils/iterators.py,sha256=GkT2fgMVKDorT-BKPPOPOIDj5Zt4yl-5vAmpn4H5wGA,11055
97
97
  a_sync/utils/repr.pyi,sha256=PWdsa6sF9_3nBqEgLaxtaHty7o7gwL--jPqvcelHY10,131
@@ -106,18 +106,18 @@ a_sync/primitives/__init__.py,sha256=U5r-Do_TKR1FbfLEHuckiYs87QkN4HsYNZfunRhX52c
106
106
  a_sync/primitives/_loggable.pxd,sha256=1YRkqc20KcPoTukbWXn7qpbZ8zA16X1h_84vadCqSPc,133
107
107
  a_sync/primitives/_loggable.pyx,sha256=jxKSBCs4VlXuYC7LsxbUJw0FJInjBKOkEdBSoqCndxY,3003
108
108
  a_sync/primitives/_debug.pyx,sha256=NH2hr-yQLz1pKnmleIpIeDVTy75KSguQpUiuoza_ahc,7849
109
- a_sync/primitives/_loggable.cpython-39-darwin.so,sha256=kN1AvDh2Rxg_3-7J7md2sMzASyM3tZKMR_w4UTm0hmM,103904
110
- a_sync/primitives/_debug.cpython-39-darwin.so,sha256=5ii7JoZl0zbIykj-CNnEqnPc9It2v82EBJWnLjTdEds,149256
109
+ a_sync/primitives/_loggable.cpython-39-darwin.so,sha256=SpS3aOH1cPZ7Vsui1clhEAlZlQCIoaeJ5lLYZfFPek4,103904
110
+ a_sync/primitives/_debug.cpython-39-darwin.so,sha256=ntua6QOdmCp1MzWVaBTBIBHpQG8huZPW6h4YHlm0zPo,149256
111
111
  a_sync/primitives/_loggable.c,sha256=Us1P0zNcyclaIoWNOwRQp92ejJTqgX0aHyIdBBVb2DI,419940
112
- a_sync/primitives/locks/counter.cpython-39-darwin.so,sha256=z5z6FMUJvVEv72IyARNTtFtRhHUzatLR7OJ2TtYyRDc,170256
112
+ a_sync/primitives/locks/counter.cpython-39-darwin.so,sha256=dN4MZB9y6EsI7iAgiyV78H4OuF7b2RFSx7lQKbiVbUQ,170256
113
113
  a_sync/primitives/locks/prio_semaphore.pyi,sha256=w3xGj3-kdFEjw4k8vzt4TiWsG8j5KC6erXBNNrEhaL0,7644
114
114
  a_sync/primitives/locks/event.pyx,sha256=PFQoQVZ9DozV2LOdKK-03fWpX_MrvBqxikKk4k3PjHs,6049
115
115
  a_sync/primitives/locks/semaphore.pyx,sha256=eQX6J5SdWK5qnXNPs6frO6BpQf9RuExNwZIjMlkNnHI,14965
116
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/semaphore.cpython-39-darwin.so,sha256=hAKIzjT4xgKTZrAvtRIa5gXKM9TfFP62gJp2zfqpc4U,257264
118
+ a_sync/primitives/locks/semaphore.cpython-39-darwin.so,sha256=r88LLTNX3nFl1owJ4S3fkGgO0t5Lu8hDwHobth6i6ic,257264
119
119
  a_sync/primitives/locks/prio_semaphore.pxd,sha256=SZXX1jH12m9PKH9VmrKpLdTctY0c_wYS75YGWoDdlzE,1041
120
- a_sync/primitives/locks/prio_semaphore.cpython-39-darwin.so,sha256=xRbMeE4Kgubd6ISzbCr4o9DLMfwd-3P8Ct_MfbqBP7w,257888
120
+ a_sync/primitives/locks/prio_semaphore.cpython-39-darwin.so,sha256=76inugROD-9_wXN9xZRsk5U-5KUahTZ5Ovx-AzPZAuM,257888
121
121
  a_sync/primitives/locks/counter.pyx,sha256=H_3LN50-zDvBSgHoKXXOMlUKs78aZSFDhu8gQrhWV5Y,9055
122
122
  a_sync/primitives/locks/__init__.py,sha256=XPiWbxxPyaCC-NnfNm42up2qf61LdqFgzGkq082DL1Q,436
123
123
  a_sync/primitives/locks/counter.pxd,sha256=_HoPXPMTRY3Gw3GPUB2jAx7lUpjJ4QyO75YiR_BehAQ,409
@@ -128,7 +128,7 @@ a_sync/primitives/locks/prio_semaphore.pyx,sha256=DAgcufTedvvPBj5BfM56chjplEi0QU
128
128
  a_sync/primitives/locks/semaphore.pyi,sha256=ynHIA0k9HMzbsTfhMAwCEfpZSECVhXxhcNAwwQmsSlI,5975
129
129
  a_sync/primitives/locks/counter.c,sha256=MiG2k0PhWJHpC5NBh87GJbLBYOjOhzuf9uGXb86nPjc,713260
130
130
  a_sync/primitives/locks/semaphore.pxd,sha256=zy-PgktLUsFaXxvrSbB3m6gxisgzchCpKrcX8Zzwq_I,585
131
- a_sync/primitives/locks/event.cpython-39-darwin.so,sha256=cv1pP34cQyE2rC06_JzJSxZVAaoq9NDNSuPIHEDZvzM,167192
131
+ a_sync/primitives/locks/event.cpython-39-darwin.so,sha256=qGDzCwlw1QKXKsf8dWjE3jvojpAnPlc-RQq9qaFmlrI,167192
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
@@ -139,17 +139,17 @@ a_sync/async_property/cached.pyi,sha256=kL7Cvn7z26R7JROFDQ22GaWll-TvOL79Q-OeQ2oa
139
139
  a_sync/async_property/cached.c,sha256=70ERIMLrNtYymVNVB_dThQUQFH7a7LwUzeDM8oE8znc,858352
140
140
  a_sync/async_property/__init__.pxd,sha256=EGawuQLZIz7ZZLOFmaOQAFUVvabadR0aPYBW7U4TaCo,74
141
141
  a_sync/async_property/cached.pxd,sha256=u4XHDFvvaRv7y65VyDI8gVmYzlGD-kFlN1H2lc48EqU,339
142
- a_sync/async_property/cached.cpython-39-darwin.so,sha256=zRJ81qKn6DwgMLMEm4wGwWYJBjN4rcmUpULR2MINx6A,205480
142
+ a_sync/async_property/cached.cpython-39-darwin.so,sha256=Bm9mb-qzyz16ly3wBbC9L9qcmqZjh5XeDNLmuaVzmH8,205480
143
143
  a_sync/async_property/proxy.pxd,sha256=fyc5IGOcwNzBP6XsG3vYKjbLP6dOfSVCtGb1EEWDxVU,47
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-39-darwin.so,sha256=0McFN5iXtIkQUmbXTioUgi3HT3xa-LDXggCPum9mTA0,333400
147
+ a_sync/async_property/proxy.cpython-39-darwin.so,sha256=L6EJU6PqPef4QARTIE-JNCnav9OG6u2zZ_pOCIu_yPM,333400
148
148
  a_sync/asyncio/sleep.pyx,sha256=kjNeRimAfMZB6vJs7t-SbtMgnRqhybO3cZ7uijkosJs,1273
149
149
  a_sync/asyncio/as_completed.pxd,sha256=mISE2jdb2jOS0q3TKg0F_k-Zf-d3hzdBNKU1PT-Tn40,162
150
150
  a_sync/asyncio/igather.c,sha256=467zCelfZro_nvIgmwbYFmceE45Cibb8JvpTMsKofM8,471337
151
- a_sync/asyncio/create_task.pyx,sha256=xB_f3WrTxaJ2h2zgy16VzDTMJtfc-GcTbjeGTGbz7f4,8771
152
- a_sync/asyncio/create_task.c,sha256=hx8mAgxWMzPEnVLvW8upI7afOc72rlhANXvgkjAF8Pc,603768
151
+ a_sync/asyncio/create_task.pyx,sha256=SUpoo1h0m_a4dPavfQyoOulkgtsKR4KucJZixU1ebhc,8722
152
+ a_sync/asyncio/create_task.c,sha256=wku_uFoDqdhLa5FFGHr29lJczIVGlCoc0Lep2KuQN-M,591140
153
153
  a_sync/asyncio/igather.pxd,sha256=M9hMUtgp6118pa0ddR9daQubvnceefnbt4pbvEl0doE,71
154
154
  a_sync/asyncio/igather.pyi,sha256=ms6FY78h_8D3aiuPsPo0h3AheTzLGy-73ja-s2gmW_A,201
155
155
  a_sync/asyncio/gather.pyi,sha256=7P_GapnZAz4z3xDZeg4wKpM1zD-6nVd15tRzG6b_jKk,4515
@@ -159,19 +159,19 @@ a_sync/asyncio/as_completed.pyi,sha256=-VdtfMlX0XdkqJbJm8C0gEAi_BfRbkz3Xkdver6vH
159
159
  a_sync/asyncio/sleep.pyi,sha256=ab8OtiZm4Py0-sVQA2pzGVZiHUoTItkJG_Nd02xduuE,537
160
160
  a_sync/asyncio/sleep.c,sha256=vrlY1_8dMSyk1ggO6tk5Td43gujjXiJAt2FFUgMMpoU,342937
161
161
  a_sync/asyncio/as_completed.c,sha256=jbM1c_UmHWd_oXnWAYNDDNz1kKCRw0Ev8vBOzxri52A,735119
162
- a_sync/asyncio/create_task.cpython-39-darwin.so,sha256=TtzX3DZvuKlKOQ1M9ou2jaaXIFDIlaF6jlCr2OcGQ1g,148240
162
+ a_sync/asyncio/create_task.cpython-39-darwin.so,sha256=V6PUSFTr1-igYVBVqGWoIIngYyZ1QZdfW6AKSpDMk5g,148208
163
163
  a_sync/asyncio/create_task.pyi,sha256=5H2z4k_2dGG2QTGjGEgP1N6ITuClYYWzkPbzaeQwKks,1864
164
- a_sync/asyncio/gather.cpython-39-darwin.so,sha256=enGLkzeYzwso3NHkZYUPe613uctD4QeepMuOEG2vEHk,166792
165
- a_sync/asyncio/igather.cpython-39-darwin.so,sha256=Xkay72S-DYlCM83ij7_h-pfoSzUa5V0iSLcZqhmCdkg,119552
166
- a_sync/asyncio/as_completed.cpython-39-darwin.so,sha256=zRVp10tKVHG_tX1Iy2xXH1oF-mwYHvIWhFmc4q7hlUk,187280
164
+ a_sync/asyncio/gather.cpython-39-darwin.so,sha256=AjU2p2FRIgD1cl6Mw8dr58GUP7nyxijHsTmKCXGn5lg,166792
165
+ a_sync/asyncio/igather.cpython-39-darwin.so,sha256=GScVH_t4pW_LXwpILUKVPXpZ8V4AIHbJJ0b8g8b103M,119552
166
+ a_sync/asyncio/as_completed.cpython-39-darwin.so,sha256=LFm2EZmaG2lQRpDmIHlpd-eC2CI8tqMp-0Vc0Md3jfo,187280
167
167
  a_sync/asyncio/igather.pyx,sha256=reJZ0Jkbx2MLu-LTrQ_hOPfhEdbFlPEQ9ro98sAcRRA,6574
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/sleep.cpython-39-darwin.so,sha256=NVrM-CaMzMi3pclucxvlp8UIez7eMRK2dTcIqWNVw3c,84296
171
+ a_sync/asyncio/sleep.cpython-39-darwin.so,sha256=aLJgGKeYre-FR2swYzlo9J3iAMxkQiGMixpHvITmG_Q,84296
172
172
  a_sync/asyncio/as_completed.pyx,sha256=ar0gJ3iN6-4Jw8xy6i7KVJ54RnAGt1JWE85Wh6kPF48,9052
173
- ez_a_sync-0.32.23.dist-info/RECORD,,
174
- ez_a_sync-0.32.23.dist-info/WHEEL,sha256=bDWaFWigpG5bEpqw9IoRiyYs8MvmSFh0OhUAOoi_-KA,134
175
- ez_a_sync-0.32.23.dist-info/top_level.txt,sha256=ew2xVyFeZE_a5XMEL64h7-vJIbaBQieaFcvBAWUpU_s,7
176
- ez_a_sync-0.32.23.dist-info/METADATA,sha256=MP0UhNAynaAOBGpDpxtBaWU4-qpZGFyjUabTxtwp6aw,13197
177
- ez_a_sync-0.32.23.dist-info/licenses/LICENSE.txt,sha256=1on6-17OUMlja6vSPTcmlmeT_DwujCZJijYxaplBvZk,1075
173
+ ez_a_sync-0.32.25.dist-info/RECORD,,
174
+ ez_a_sync-0.32.25.dist-info/WHEEL,sha256=bDWaFWigpG5bEpqw9IoRiyYs8MvmSFh0OhUAOoi_-KA,134
175
+ ez_a_sync-0.32.25.dist-info/top_level.txt,sha256=ew2xVyFeZE_a5XMEL64h7-vJIbaBQieaFcvBAWUpU_s,7
176
+ ez_a_sync-0.32.25.dist-info/METADATA,sha256=LgSg113kuTmSpvhfHQ7xsQ2DHcpYLwNGsnGBlbhIv2c,13197
177
+ ez_a_sync-0.32.25.dist-info/licenses/LICENSE.txt,sha256=1on6-17OUMlja6vSPTcmlmeT_DwujCZJijYxaplBvZk,1075