ez-a-sync 0.32.21__cp311-cp311-macosx_11_0_arm64.whl → 0.32.22__cp311-cp311-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.cpython-311-darwin.so +0 -0
- a_sync/a_sync/_descriptor.cpython-311-darwin.so +0 -0
- a_sync/a_sync/_flags.cpython-311-darwin.so +0 -0
- a_sync/a_sync/_helpers.cpython-311-darwin.so +0 -0
- a_sync/a_sync/_kwargs.cpython-311-darwin.so +0 -0
- a_sync/a_sync/abstract.cpython-311-darwin.so +0 -0
- a_sync/a_sync/base.cpython-311-darwin.so +0 -0
- a_sync/a_sync/decorator.py +89 -0
- a_sync/a_sync/flags.cpython-311-darwin.so +0 -0
- a_sync/a_sync/function.cpython-311-darwin.so +0 -0
- a_sync/a_sync/method.cpython-311-darwin.so +0 -0
- a_sync/a_sync/modifiers/manager.cpython-311-darwin.so +0 -0
- a_sync/a_sync/property.cpython-311-darwin.so +0 -0
- a_sync/async_property/cached.cpython-311-darwin.so +0 -0
- a_sync/async_property/proxy.cpython-311-darwin.so +0 -0
- a_sync/asyncio/as_completed.cpython-311-darwin.so +0 -0
- a_sync/asyncio/create_task.cpython-311-darwin.so +0 -0
- a_sync/asyncio/gather.cpython-311-darwin.so +0 -0
- a_sync/asyncio/igather.cpython-311-darwin.so +0 -0
- a_sync/asyncio/sleep.cpython-311-darwin.so +0 -0
- a_sync/debugging.cpython-311-darwin.so +0 -0
- a_sync/exceptions.cpython-311-darwin.so +0 -0
- a_sync/functools.cpython-311-darwin.so +0 -0
- a_sync/iter.cpython-311-darwin.so +0 -0
- a_sync/primitives/_debug.cpython-311-darwin.so +0 -0
- a_sync/primitives/_loggable.cpython-311-darwin.so +0 -0
- a_sync/primitives/locks/counter.cpython-311-darwin.so +0 -0
- a_sync/primitives/locks/event.cpython-311-darwin.so +0 -0
- a_sync/primitives/locks/prio_semaphore.cpython-311-darwin.so +0 -0
- a_sync/primitives/locks/semaphore.cpython-311-darwin.so +0 -0
- a_sync/utils/repr.cpython-311-darwin.so +0 -0
- {ez_a_sync-0.32.21.dist-info → ez_a_sync-0.32.22.dist-info}/METADATA +1 -1
- {ez_a_sync-0.32.21.dist-info → ez_a_sync-0.32.22.dist-info}/RECORD +36 -36
- {ez_a_sync-0.32.21.dist-info → ez_a_sync-0.32.22.dist-info}/WHEEL +0 -0
- {ez_a_sync-0.32.21.dist-info → ez_a_sync-0.32.22.dist-info}/licenses/LICENSE.txt +0 -0
- {ez_a_sync-0.32.21.dist-info → ez_a_sync-0.32.22.dist-info}/top_level.txt +0 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
a_sync/a_sync/decorator.py
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
# mypy: disable-error-code=valid-type
|
|
2
2
|
# mypy: disable-error-code=misc
|
|
3
|
+
from concurrent.futures import Executor
|
|
3
4
|
from a_sync._typing import *
|
|
4
5
|
from a_sync.a_sync import config
|
|
5
6
|
from a_sync.a_sync.function import (
|
|
@@ -24,6 +25,36 @@ from a_sync.a_sync.function import (
|
|
|
24
25
|
# pass
|
|
25
26
|
|
|
26
27
|
|
|
28
|
+
@overload
|
|
29
|
+
def a_sync(
|
|
30
|
+
default: Literal["async"],
|
|
31
|
+
executor: Executor,
|
|
32
|
+
**modifiers: Unpack[ModifierKwargs],
|
|
33
|
+
) -> ASyncDecoratorAsyncDefault:
|
|
34
|
+
"""
|
|
35
|
+
Creates an asynchronous default decorator to run a sync function in an executor.
|
|
36
|
+
|
|
37
|
+
Args:
|
|
38
|
+
default: Specifies the default execution mode as 'async'.
|
|
39
|
+
executor: The executor that will be used to call the sync function.
|
|
40
|
+
**modifiers: Additional keyword arguments to modify the behavior of the decorated function.
|
|
41
|
+
|
|
42
|
+
Examples:
|
|
43
|
+
Basic usage with an asynchronous default:
|
|
44
|
+
|
|
45
|
+
>>> @a_sync(default='async', executor=ThreadPoolExecutor(4))
|
|
46
|
+
... def my_function():
|
|
47
|
+
... return True
|
|
48
|
+
>>> await my_function()
|
|
49
|
+
True
|
|
50
|
+
>>> my_function(sync=True)
|
|
51
|
+
True
|
|
52
|
+
|
|
53
|
+
See Also:
|
|
54
|
+
:class:`ASyncDecoratorAsyncDefault`
|
|
55
|
+
"""
|
|
56
|
+
|
|
57
|
+
|
|
27
58
|
@overload
|
|
28
59
|
def a_sync(
|
|
29
60
|
default: Literal["async"],
|
|
@@ -52,6 +83,36 @@ def a_sync(
|
|
|
52
83
|
"""
|
|
53
84
|
|
|
54
85
|
|
|
86
|
+
@overload
|
|
87
|
+
def a_sync(
|
|
88
|
+
default: Literal["sync"],
|
|
89
|
+
executor: Executor,
|
|
90
|
+
**modifiers: Unpack[ModifierKwargs],
|
|
91
|
+
) -> ASyncDecoratorSyncDefault:
|
|
92
|
+
"""
|
|
93
|
+
Creates a synchronous default decorator to run a sync function in an executor when called asynchronously.
|
|
94
|
+
|
|
95
|
+
Args:
|
|
96
|
+
default: Specifies the default execution mode as 'sync'.
|
|
97
|
+
executor: The executor that will be used to call the sync function.
|
|
98
|
+
**modifiers: Additional keyword arguments to modify the behavior of the decorated function.
|
|
99
|
+
|
|
100
|
+
Examples:
|
|
101
|
+
Usage with an executor without specifying a default mode:
|
|
102
|
+
|
|
103
|
+
>>> @a_sync(default="sync", executor=ThreadPoolExecutor(4))
|
|
104
|
+
... def my_function():
|
|
105
|
+
... return True
|
|
106
|
+
>>> my_function()
|
|
107
|
+
True
|
|
108
|
+
>>> await my_function(sync=False)
|
|
109
|
+
True
|
|
110
|
+
|
|
111
|
+
See Also:
|
|
112
|
+
:class:`ASyncDecoratorSyncDefault`
|
|
113
|
+
"""
|
|
114
|
+
|
|
115
|
+
|
|
55
116
|
@overload
|
|
56
117
|
def a_sync(
|
|
57
118
|
default: Literal["sync"],
|
|
@@ -80,6 +141,34 @@ def a_sync(
|
|
|
80
141
|
"""
|
|
81
142
|
|
|
82
143
|
|
|
144
|
+
@overload
|
|
145
|
+
def a_sync(
|
|
146
|
+
executor: Executor,
|
|
147
|
+
**modifiers: Unpack[ModifierKwargs],
|
|
148
|
+
) -> ASyncDecoratorSyncDefault:
|
|
149
|
+
"""
|
|
150
|
+
Creates a synchronous default decorator to run a sync function in an executor when called asynchronously.
|
|
151
|
+
|
|
152
|
+
Args:
|
|
153
|
+
executor: The executor that will be used to call the sync function.
|
|
154
|
+
**modifiers: Additional keyword arguments to modify the behavior of the decorated function.
|
|
155
|
+
|
|
156
|
+
Examples:
|
|
157
|
+
Usage with an executor without specifying a default mode:
|
|
158
|
+
|
|
159
|
+
>>> @a_sync(executor=ThreadPoolExecutor(4))
|
|
160
|
+
... def my_function():
|
|
161
|
+
... return True
|
|
162
|
+
>>> my_function()
|
|
163
|
+
True
|
|
164
|
+
>>> await my_function(sync=False)
|
|
165
|
+
True
|
|
166
|
+
|
|
167
|
+
See Also:
|
|
168
|
+
:class:`ASyncDecoratorSyncDefault`
|
|
169
|
+
"""
|
|
170
|
+
|
|
171
|
+
|
|
83
172
|
@overload
|
|
84
173
|
def a_sync(
|
|
85
174
|
**modifiers: Unpack[ModifierKwargs],
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,18 +1,13 @@
|
|
|
1
|
-
ez_a_sync-0.32.21.dist-info/RECORD,,
|
|
2
|
-
ez_a_sync-0.32.21.dist-info/WHEEL,sha256=sunMa2yiYbrNLGeMVDqEA0ayyJbHlex7SCn1TZrEq60,136
|
|
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
1
|
a_sync/debugging.c,sha256=RfJnHds7wZdPmWg5PYc26nqjOQijqdOMMbGk43tvUhU,589339
|
|
7
|
-
a_sync/iter.cpython-311-darwin.so,sha256=
|
|
2
|
+
a_sync/iter.cpython-311-darwin.so,sha256=nfwDQY-Bd526V1l-GgOI2dE22vMf_AYo8RBf3C6u8dQ,409112
|
|
8
3
|
a_sync/task.py,sha256=lHeGEPyEoUPNCTMGBGxvJxTZSu6KOqN5VC0rIf_slIY,35049
|
|
9
4
|
a_sync/_smart.c,sha256=F6BKemtVy0XMKg4EsgqzIf1oO_kBFHco7RKYRHAh5hk,917706
|
|
10
5
|
a_sync/_smart.pyi,sha256=mUQwUiiSsMsbtJTKdXm076ua5B2A9USaKgjZq1Se_ZQ,5390
|
|
11
6
|
a_sync/functools.pyi,sha256=HGM208HKg5FOUbu9CbfnIOx3sdQB1OwO1t-0tZKd-T4,1404
|
|
12
7
|
a_sync/_typing.py,sha256=x24VIVjxz8sUWPmQR072pHAQxJO769Nn02f3eakFpe8,6850
|
|
13
|
-
a_sync/exceptions.cpython-311-darwin.so,sha256=
|
|
8
|
+
a_sync/exceptions.cpython-311-darwin.so,sha256=kvbvVHVwT9ux4WV2Qqt97bGj1aznmlsBNng0FFUmrxg,158368
|
|
14
9
|
a_sync/ENVIRONMENT_VARIABLES.py,sha256=YgIB8mQRqQBLbD3DdwMjx4ylqO8pK3GUvSNCerWJzx8,1280
|
|
15
|
-
a_sync/debugging.cpython-311-darwin.so,sha256=
|
|
10
|
+
a_sync/debugging.cpython-311-darwin.so,sha256=k4QXIJu8P884E7BdnZMpvng1fFJf6WR9AquvDIzp-Oo,150112
|
|
16
11
|
a_sync/iter.pyx,sha256=TKzdMQkI74oKdgW-Us1WSgE5_KdS_7dOUykAmTHiXgU,37486
|
|
17
12
|
a_sync/__init__.pxd,sha256=ol4jqkvuweaaU8GQU_Mq9rak8IIsagYTdhYhbKK74ac,81
|
|
18
13
|
a_sync/functools.pxd,sha256=hhygzVpa5tXnDWR1pi_WLkOBd_1mC60K3279wYFEfA8,187
|
|
@@ -20,7 +15,7 @@ a_sync/_smart.pxd,sha256=3FlPqSvAtmGXIDFzfm7wpkvL6xt8z8w-vwow4Lura2g,76
|
|
|
20
15
|
a_sync/exceptions.pyi,sha256=NnBEKUBzBCl0kLj75ukwyQeWXjwPSkDg-NxKsXh-Ans,10834
|
|
21
16
|
a_sync/__init__.py,sha256=lgwXsFYALBp0ORHRLKlpfPE79GIqbhR_MP8JbZStBGc,5750
|
|
22
17
|
a_sync/debugging.pyx,sha256=Z29Lek1NyUXVFHjfk9O6XWxPNk1uRFyY6tK6fTfgxGM,3045
|
|
23
|
-
a_sync/_smart.cpython-311-darwin.so,sha256
|
|
18
|
+
a_sync/_smart.cpython-311-darwin.so,sha256=-Gze2toQcoTXtn_zYMUaxyp-4diM9lRwryNfMt563oA,208896
|
|
24
19
|
a_sync/aliases.py,sha256=TbLyuLeFfJEmcC5-NP6h4DQ9QXlQjGny2NUP_x1tflw,212
|
|
25
20
|
a_sync/_smart.pyx,sha256=5ceSxpdh51l36-fKHHW9YI6lmc8_PlarM8fRIqzlI3A,19773
|
|
26
21
|
a_sync/functools.c,sha256=KwvIpLg4DT2z4P-VlvJLL2pR3CeWdQslyKLOY4xrQlI,450421
|
|
@@ -34,25 +29,25 @@ a_sync/exceptions.c,sha256=7juaOwpPuyUNyMcN3KavW1QM6uUIDHYKwTQBf3PYpH8,550527
|
|
|
34
29
|
a_sync/exceptions.pyx,sha256=MGgpBVAESC-5TtEEECgs74ZIx5ToR6qi_stfmnCyoaQ,13201
|
|
35
30
|
a_sync/debugging.pyi,sha256=AELgYmG2aLEBrkSHL7WKUrJGzyk-XXDq_abS8W6ccck,2311
|
|
36
31
|
a_sync/executor.py,sha256=bacluNlegqlioPxlcFOTaGiH2ylXJYkfBSsUMnQqOWQ,21401
|
|
37
|
-
a_sync/functools.cpython-311-darwin.so,sha256=
|
|
38
|
-
a_sync/a_sync/abstract.cpython-311-darwin.so,sha256=
|
|
32
|
+
a_sync/functools.cpython-311-darwin.so,sha256=4062ZMhQQSu8Jf512hUk9Tfl2xnRCm3YjGr1Tpr-UwE,121984
|
|
33
|
+
a_sync/a_sync/abstract.cpython-311-darwin.so,sha256=8IfGIsQ9680J0yY4wZqdsnAmEvdBdUzSRvVDaiyEHGU,122592
|
|
39
34
|
a_sync/a_sync/_kwargs.pxd,sha256=RdEVKGXeBvq5_O4WkRXtjKdi8FV6oNPGhtJ-epUnr1M,92
|
|
40
35
|
a_sync/a_sync/abstract.pyx,sha256=OUp1CJ3NnBInC5agJ-6Ob_n6HfjkHY-f_6gPgZxaGx8,7864
|
|
41
|
-
a_sync/a_sync/function.cpython-311-darwin.so,sha256=
|
|
42
|
-
a_sync/a_sync/base.cpython-311-darwin.so,sha256=
|
|
36
|
+
a_sync/a_sync/function.cpython-311-darwin.so,sha256=X18bUqXZHB5fSN_fIsT7AePrSjOitwjomyNidiF6fJ4,386032
|
|
37
|
+
a_sync/a_sync/base.cpython-311-darwin.so,sha256=dkPByvyf7o5zBmhrjn7Vx4d7LZg581LopNgZzbHOIqk,142104
|
|
43
38
|
a_sync/a_sync/base.pyi,sha256=t7AsaZzf74djHjkAA7Dnzf12sG1ppoxpwm0Iyn1GM3w,2326
|
|
44
|
-
a_sync/a_sync/_flags.cpython-311-darwin.so,sha256=
|
|
39
|
+
a_sync/a_sync/_flags.cpython-311-darwin.so,sha256=K4FNGos0TQyzArQCKG3eZgy7LHDTAKk9NkoZA_T0fF4,76608
|
|
45
40
|
a_sync/a_sync/_meta.py,sha256=iET1qFtqdMZmMRc_-e1rWL2VgYJ7ymsZ6_JdWrrcDS0,9429
|
|
46
41
|
a_sync/a_sync/_flags.pyx,sha256=suOkvo37BZ9RIOdCpAdsXgk_98IOkn6jr1Ss5yunvdU,2806
|
|
47
42
|
a_sync/a_sync/flags.pxd,sha256=Jxe9hvWn-mPfGXHXLEvRPM2i44c4y2D4iq4ZqZZst80,2238
|
|
48
43
|
a_sync/a_sync/property.pyi,sha256=GWXCWpJBa_qxBYfbv_Lmt02Md8WK9nJYTu7blO4O2ew,13680
|
|
49
|
-
a_sync/a_sync/property.cpython-311-darwin.so,sha256=
|
|
44
|
+
a_sync/a_sync/property.cpython-311-darwin.so,sha256=aQBmNL13nGINXCjOAIy8RyPHk69P-izOocNCAlF3zK4,318704
|
|
50
45
|
a_sync/a_sync/_helpers.pxd,sha256=VG28VRW-jlTZJ-0H-W8Y8u5gw8zUVIbsb3nW-REI_Z4,118
|
|
51
46
|
a_sync/a_sync/config.py,sha256=siXP4CFLQ_vswuG5K-G6cOSjQ6xKc1gN7-XNHFN2tFU,6221
|
|
52
47
|
a_sync/a_sync/_flags.c,sha256=hxVtZT5faViQExnKIQnSBb-p9Rbqpxpor9dNxQH9dZA,217269
|
|
53
|
-
a_sync/a_sync/decorator.py,sha256=
|
|
54
|
-
a_sync/a_sync/_descriptor.cpython-311-darwin.so,sha256=
|
|
55
|
-
a_sync/a_sync/method.cpython-311-darwin.so,sha256=
|
|
48
|
+
a_sync/a_sync/decorator.py,sha256=mCSp2KxOsPObANAwR6VK4UzhuelxAOwPDGQ8-jxe8dk,19750
|
|
49
|
+
a_sync/a_sync/_descriptor.cpython-311-darwin.so,sha256=mQ3_2Bq_brrV-xMR1SajBe_SpDuRgMQrduldzRM-SxM,209152
|
|
50
|
+
a_sync/a_sync/method.cpython-311-darwin.so,sha256=1Z5iqpT5-_297dL76jn9J7G15kRO5pUz45x6B52oj6E,342704
|
|
56
51
|
a_sync/a_sync/property.c,sha256=gJra9kx2XTDD_9tLy-xvQOqYvgXj2f5o4zDZMX9qMbA,1248760
|
|
57
52
|
a_sync/a_sync/_helpers.pyi,sha256=t2iBYRsG3qCfhzEfO6aG4KLQv_LWe8yjYDZ4RppnOak,319
|
|
58
53
|
a_sync/a_sync/method.pyx,sha256=2asS_Ej5q6-BZ9T8JYqXjLOaQ9-n2SBcmXaAvSoJgps,36146
|
|
@@ -65,18 +60,18 @@ a_sync/a_sync/_descriptor.pyi,sha256=N77KA4DQbXUXKeAf-vTpAXc7E4Bk1d-Khtr7vjzwRwI
|
|
|
65
60
|
a_sync/a_sync/_helpers.c,sha256=jlTq1V_AHGwTlo53o-NXmSxDquWj2_ZqmA1U900L3Ys,551235
|
|
66
61
|
a_sync/a_sync/abstract.pyi,sha256=IGEh74mnvZECWpSr0bh-ZQeFc-6Q4cu9EefhEaDLp2c,5071
|
|
67
62
|
a_sync/a_sync/base.pyx,sha256=73vU-pr2XClsKLcGlQbhAhjLFHMoBQrb6UH-YuCBhxU,10603
|
|
68
|
-
a_sync/a_sync/flags.cpython-311-darwin.so,sha256=
|
|
63
|
+
a_sync/a_sync/flags.cpython-311-darwin.so,sha256=96Kk0jFVEAFLGyWKV9NQvH56urXXrg56Vm0I6YHyhkY,56392
|
|
69
64
|
a_sync/a_sync/function.pxd,sha256=QOGVstj2s4oQy18QwjCy--eu4pOlheVwWg3oiT2KDno,830
|
|
70
65
|
a_sync/a_sync/_descriptor.c,sha256=Q2O12TGkhzGShoRS4E5RSBiOUoPsoZWuEQ4_gWnCcpA,844125
|
|
71
66
|
a_sync/a_sync/method.pxd,sha256=TMlVXxWOGc6r-4duaRSi_kEPe24Be1mpeISZNqktqXg,472
|
|
72
67
|
a_sync/a_sync/property.pyx,sha256=hecMUMrIqhrEKUEx6EPIR4QnhRpPOx-28_TbkS_7vCU,27803
|
|
73
68
|
a_sync/a_sync/singleton.py,sha256=WRJ9FEqeFB8T59NSOiLLcm-QmMCI0H7nwEpvDIUp9IQ,2492
|
|
74
|
-
a_sync/a_sync/_kwargs.cpython-311-darwin.so,sha256=
|
|
69
|
+
a_sync/a_sync/_kwargs.cpython-311-darwin.so,sha256=lSZM-vtK8xIpng5ycLA0UOxiyfzKvPlR4yur9WCF0sU,106144
|
|
75
70
|
a_sync/a_sync/abstract.c,sha256=my8pajUN_xUqEIJitvZ7ZN5Mxy8e4lJv-iXgV308oQE,461336
|
|
76
71
|
a_sync/a_sync/flags.c,sha256=pnoCgI2Cochd4fMayKEKI82lw8f83fwhhUkNajLvxJk,175737
|
|
77
72
|
a_sync/a_sync/method.c,sha256=go8jgtOweE-5HQKgLr86Jb1REglPDLFsOx408c7Pyio,1390305
|
|
78
73
|
a_sync/a_sync/method.pyi,sha256=DpzdpuYSi7wiZkkX9xB0pg1oFcCYxJbVrWj3J_ISo3M,17815
|
|
79
|
-
a_sync/a_sync/_helpers.cpython-311-darwin.so,sha256=
|
|
74
|
+
a_sync/a_sync/_helpers.cpython-311-darwin.so,sha256=gTb_KkeWKmt8i-BOfYIUx8HajvffPgY7haPiJjtBVYY,146608
|
|
80
75
|
a_sync/a_sync/_helpers.pyx,sha256=rvsCXR7tvddUIymUQCSi4eGzNCstYi5zGAdLCTPaIFQ,5409
|
|
81
76
|
a_sync/a_sync/flags.pyx,sha256=PU_DAZzoXhn-Z-okbTu0p6stnwnKsSEn781TryRRs0E,2305
|
|
82
77
|
a_sync/a_sync/_flags.pxd,sha256=w8CBx5wDoCBRHFmeQOuVwWefDC3LP3zIWGaao_-y_uY,188
|
|
@@ -89,14 +84,14 @@ a_sync/a_sync/modifiers/__init__.pxd,sha256=17tPpMY2ByVbMGIpI5kiP3WX8V9IM5ZHJp0Y
|
|
|
89
84
|
a_sync/a_sync/modifiers/semaphores.py,sha256=V1_jjxwuXq55y6Lv4yP4mymVj5AOCMIZXSkaZSKwEdw,6916
|
|
90
85
|
a_sync/a_sync/modifiers/manager.pxd,sha256=s7zw1kllYYGpe5uFETRIUFsgbVdtFM8jGh4RxZgm25M,183
|
|
91
86
|
a_sync/a_sync/modifiers/__init__.py,sha256=JXyupO5h2hICMd-ha642ttCEFib_gAA6v-Ll6cyHNCA,4159
|
|
92
|
-
a_sync/a_sync/modifiers/manager.cpython-311-darwin.so,sha256=
|
|
87
|
+
a_sync/a_sync/modifiers/manager.cpython-311-darwin.so,sha256=5DwXJr0YDQ3bgdxnTY9znE6jvrYSe6W0AE2F8_BjltY,169376
|
|
93
88
|
a_sync/a_sync/modifiers/manager.pyx,sha256=PcyGpRnWgTZlPRukzPotwtUn43SYcbiR2TXaKSgEioI,9396
|
|
94
89
|
a_sync/a_sync/modifiers/manager.c,sha256=GiQBNW8VlS3IOx1EyS7HQ4njW7OGi90J83SPz7eYIbk,626521
|
|
95
90
|
a_sync/a_sync/modifiers/limiter.py,sha256=WjO32P4vZLvyJnwpm2qFgqwRmCM7eEHxcdXzilzLlps,4303
|
|
96
91
|
a_sync/a_sync/modifiers/cache/memory.py,sha256=vON9K6K3nMkGphfUHCTrtURJUXZ3IE9B757wa-H1oFk,5335
|
|
97
92
|
a_sync/a_sync/modifiers/cache/__init__.py,sha256=SJlZ1EyyzBkYlWMU4XbiAlW9SCqCQbOAmDgVAP7CDN0,5532
|
|
98
93
|
a_sync/utils/repr.pyx,sha256=xdsVdK75Zi5pAoh-8qRG0q7F0ySAq1zDkksZw37FoL4,2632
|
|
99
|
-
a_sync/utils/repr.cpython-311-darwin.so,sha256=
|
|
94
|
+
a_sync/utils/repr.cpython-311-darwin.so,sha256=mSCq01FykrA-fI_Zhneq5tTYjsP3mthS68wg03Iwo24,145832
|
|
100
95
|
a_sync/utils/__init__.py,sha256=Y6R-IcD5ROzp2Zs3ZMv3bapkcfOpJHlBeD838bntd-Q,3213
|
|
101
96
|
a_sync/utils/iterators.py,sha256=GkT2fgMVKDorT-BKPPOPOIDj5Zt4yl-5vAmpn4H5wGA,11055
|
|
102
97
|
a_sync/utils/repr.pyi,sha256=PWdsa6sF9_3nBqEgLaxtaHty7o7gwL--jPqvcelHY10,131
|
|
@@ -106,21 +101,21 @@ a_sync/primitives/_loggable.pyi,sha256=MxE1kINwYiXBFq6tPSWppWs4hToR-6vfBZwIhGJ11
|
|
|
106
101
|
a_sync/primitives/_debug.pyi,sha256=mcGGn_C9ICgn2mcP-cER1ps-q1pdei-2niu-fEQnFXQ,2175
|
|
107
102
|
a_sync/primitives/__init__.pxd,sha256=FIO-eD4HaJ259mz3XB6HE1YF4tDej6ojrxQ_kx-tMwM,38
|
|
108
103
|
a_sync/primitives/_debug.pxd,sha256=EaMH5xgQHs7hwnWFUocHEl9pAmUZs9J1aRVtb62zvw0,464
|
|
109
|
-
a_sync/primitives/_debug.cpython-311-darwin.so,sha256=
|
|
104
|
+
a_sync/primitives/_debug.cpython-311-darwin.so,sha256=lNaguEyVyKNfYV4TOi9JqlmdaVMUV3r0U4ek71Oqp-c,149696
|
|
110
105
|
a_sync/primitives/_debug.c,sha256=i2c5IcDvCJXiiPUw7BOOrE37_0TxU7TAA4MqbGtJwEc,600616
|
|
111
106
|
a_sync/primitives/__init__.py,sha256=U5r-Do_TKR1FbfLEHuckiYs87QkN4HsYNZfunRhX52c,1642
|
|
112
107
|
a_sync/primitives/_loggable.pxd,sha256=1YRkqc20KcPoTukbWXn7qpbZ8zA16X1h_84vadCqSPc,133
|
|
113
|
-
a_sync/primitives/_loggable.cpython-311-darwin.so,sha256=
|
|
108
|
+
a_sync/primitives/_loggable.cpython-311-darwin.so,sha256=N5CGMfKy-p5hAn5f1WhAxfbokYhYn4ASBrk9wMHhZAY,103968
|
|
114
109
|
a_sync/primitives/_loggable.pyx,sha256=jxKSBCs4VlXuYC7LsxbUJw0FJInjBKOkEdBSoqCndxY,3003
|
|
115
110
|
a_sync/primitives/_debug.pyx,sha256=NH2hr-yQLz1pKnmleIpIeDVTy75KSguQpUiuoza_ahc,7849
|
|
116
111
|
a_sync/primitives/_loggable.c,sha256=Us1P0zNcyclaIoWNOwRQp92ejJTqgX0aHyIdBBVb2DI,419940
|
|
117
112
|
a_sync/primitives/locks/prio_semaphore.pyi,sha256=w3xGj3-kdFEjw4k8vzt4TiWsG8j5KC6erXBNNrEhaL0,7644
|
|
118
113
|
a_sync/primitives/locks/event.pyx,sha256=PFQoQVZ9DozV2LOdKK-03fWpX_MrvBqxikKk4k3PjHs,6049
|
|
119
|
-
a_sync/primitives/locks/semaphore.cpython-311-darwin.so,sha256=
|
|
114
|
+
a_sync/primitives/locks/semaphore.cpython-311-darwin.so,sha256=77Ick1KK9oIdrb2jhhggyop365k9iAKUyDHFh7lUfe4,258080
|
|
120
115
|
a_sync/primitives/locks/semaphore.pyx,sha256=eQX6J5SdWK5qnXNPs6frO6BpQf9RuExNwZIjMlkNnHI,14965
|
|
121
116
|
a_sync/primitives/locks/prio_semaphore.c,sha256=xzwXUNqHvWCUuORdnEuia0oRE7PIYVj2a5dn0AvwXZw,1161447
|
|
122
|
-
a_sync/primitives/locks/event.cpython-311-darwin.so,sha256=
|
|
123
|
-
a_sync/primitives/locks/prio_semaphore.cpython-311-darwin.so,sha256=
|
|
117
|
+
a_sync/primitives/locks/event.cpython-311-darwin.so,sha256=WDq8CNTB7bqdNzKfYhzdoHw3LDDEdtnPV1YofmY03-4,167928
|
|
118
|
+
a_sync/primitives/locks/prio_semaphore.cpython-311-darwin.so,sha256=69QHVIh6wOTeDOkKJFGonkEnzjzSHFP1PvHB2LW49oo,258424
|
|
124
119
|
a_sync/primitives/locks/__init__.pxd,sha256=DuPhDRldnCwqBUxgo9V5K0GmA8BWLf5fC266ujDQ9pc,302
|
|
125
120
|
a_sync/primitives/locks/prio_semaphore.pxd,sha256=SZXX1jH12m9PKH9VmrKpLdTctY0c_wYS75YGWoDdlzE,1041
|
|
126
121
|
a_sync/primitives/locks/counter.pyx,sha256=H_3LN50-zDvBSgHoKXXOMlUKs78aZSFDhu8gQrhWV5Y,9055
|
|
@@ -132,7 +127,7 @@ a_sync/primitives/locks/event.pyi,sha256=cWK5LPzpbERpaXjYh5LqDcDuJDIexJjhP606mYM
|
|
|
132
127
|
a_sync/primitives/locks/prio_semaphore.pyx,sha256=DAgcufTedvvPBj5BfM56chjplEi0QUd1qAV49bSb-oM,22096
|
|
133
128
|
a_sync/primitives/locks/semaphore.pyi,sha256=ynHIA0k9HMzbsTfhMAwCEfpZSECVhXxhcNAwwQmsSlI,5975
|
|
134
129
|
a_sync/primitives/locks/counter.c,sha256=MiG2k0PhWJHpC5NBh87GJbLBYOjOhzuf9uGXb86nPjc,713260
|
|
135
|
-
a_sync/primitives/locks/counter.cpython-311-darwin.so,sha256=
|
|
130
|
+
a_sync/primitives/locks/counter.cpython-311-darwin.so,sha256=r-lrgw5il_0ZNJpsshuncvLo59YibRjhJaI9oAIGF4k,170880
|
|
136
131
|
a_sync/primitives/locks/semaphore.pxd,sha256=zy-PgktLUsFaXxvrSbB3m6gxisgzchCpKrcX8Zzwq_I,585
|
|
137
132
|
a_sync/primitives/locks/event.pxd,sha256=Wk1wLD8P6Nml1mzrRM6H34bD06LZWovjEYKnRhGcXE4,696
|
|
138
133
|
a_sync/primitives/locks/counter.pyi,sha256=d83iZwFj5mK9fIohh7n1uRdRiGAnfi2FNMZSyKtli9A,5077
|
|
@@ -144,16 +139,16 @@ a_sync/async_property/cached.pyi,sha256=kL7Cvn7z26R7JROFDQ22GaWll-TvOL79Q-OeQ2oa
|
|
|
144
139
|
a_sync/async_property/cached.c,sha256=70ERIMLrNtYymVNVB_dThQUQFH7a7LwUzeDM8oE8znc,858352
|
|
145
140
|
a_sync/async_property/__init__.pxd,sha256=EGawuQLZIz7ZZLOFmaOQAFUVvabadR0aPYBW7U4TaCo,74
|
|
146
141
|
a_sync/async_property/cached.pxd,sha256=u4XHDFvvaRv7y65VyDI8gVmYzlGD-kFlN1H2lc48EqU,339
|
|
147
|
-
a_sync/async_property/proxy.cpython-311-darwin.so,sha256=
|
|
142
|
+
a_sync/async_property/proxy.cpython-311-darwin.so,sha256=BuECIuFJ5-q460f1IlU_kFJDIhiEiQy5U7QzB47jmKc,350328
|
|
148
143
|
a_sync/async_property/proxy.pxd,sha256=fyc5IGOcwNzBP6XsG3vYKjbLP6dOfSVCtGb1EEWDxVU,47
|
|
149
144
|
a_sync/async_property/__init__.py,sha256=L0JYdB7p3RLDRVNExPKl9MtcHaPLIqo5lnpGmHVUI9E,63
|
|
150
|
-
a_sync/async_property/cached.cpython-311-darwin.so,sha256=
|
|
145
|
+
a_sync/async_property/cached.cpython-311-darwin.so,sha256=_6S91bxAg0wXOKOzZtiPQj9gYzG1EwNW-DkYeN_76CU,205984
|
|
151
146
|
a_sync/async_property/proxy.pyx,sha256=0_qGYnr6ZyBtQQGIRI2cMB_o0Bz7RZxJKwuVQGFTgTI,13295
|
|
152
147
|
a_sync/async_property/cached.pyx,sha256=4UoHk6yACkpwKjD_DBHLMb2JIAAhKVmhDGU7WZYg-Cc,6314
|
|
153
148
|
a_sync/asyncio/sleep.pyx,sha256=kjNeRimAfMZB6vJs7t-SbtMgnRqhybO3cZ7uijkosJs,1273
|
|
154
149
|
a_sync/asyncio/as_completed.pxd,sha256=mISE2jdb2jOS0q3TKg0F_k-Zf-d3hzdBNKU1PT-Tn40,162
|
|
155
150
|
a_sync/asyncio/igather.c,sha256=467zCelfZro_nvIgmwbYFmceE45Cibb8JvpTMsKofM8,471337
|
|
156
|
-
a_sync/asyncio/igather.cpython-311-darwin.so,sha256=
|
|
151
|
+
a_sync/asyncio/igather.cpython-311-darwin.so,sha256=EmQC0bTO_sJINHkoc5QB1XM5ZnsU0SqW4hiBSGKiOow,119472
|
|
157
152
|
a_sync/asyncio/create_task.pyx,sha256=xB_f3WrTxaJ2h2zgy16VzDTMJtfc-GcTbjeGTGbz7f4,8771
|
|
158
153
|
a_sync/asyncio/create_task.c,sha256=hx8mAgxWMzPEnVLvW8upI7afOc72rlhANXvgkjAF8Pc,603768
|
|
159
154
|
a_sync/asyncio/igather.pxd,sha256=M9hMUtgp6118pa0ddR9daQubvnceefnbt4pbvEl0doE,71
|
|
@@ -161,17 +156,22 @@ a_sync/asyncio/igather.pyi,sha256=ms6FY78h_8D3aiuPsPo0h3AheTzLGy-73ja-s2gmW_A,20
|
|
|
161
156
|
a_sync/asyncio/gather.pyi,sha256=7P_GapnZAz4z3xDZeg4wKpM1zD-6nVd15tRzG6b_jKk,4515
|
|
162
157
|
a_sync/asyncio/__init__.pxd,sha256=Hsy-wTlG1iLWv4mNIRQ9g2rs_8w5ooVIgFFe6VnL7nc,336
|
|
163
158
|
a_sync/asyncio/__init__.py,sha256=Z-_qJgdLFqIacrKRABlk64c1aroLUmgKAqXTeE_GQfU,6333
|
|
164
|
-
a_sync/asyncio/gather.cpython-311-darwin.so,sha256=
|
|
159
|
+
a_sync/asyncio/gather.cpython-311-darwin.so,sha256=6GrN3lHDxFXwhAoXrIWNvZaL7vF_lzJgGENs5LG4e-4,167328
|
|
165
160
|
a_sync/asyncio/as_completed.pyi,sha256=-VdtfMlX0XdkqJbJm8C0gEAi_BfRbkz3Xkdver6vHs4,3753
|
|
166
161
|
a_sync/asyncio/sleep.pyi,sha256=ab8OtiZm4Py0-sVQA2pzGVZiHUoTItkJG_Nd02xduuE,537
|
|
167
|
-
a_sync/asyncio/create_task.cpython-311-darwin.so,sha256=
|
|
162
|
+
a_sync/asyncio/create_task.cpython-311-darwin.so,sha256=uxjICcoRxWRWuJogtRp6FSyYsOYid-gJEh0YX4ZoPBo,148896
|
|
168
163
|
a_sync/asyncio/sleep.c,sha256=vrlY1_8dMSyk1ggO6tk5Td43gujjXiJAt2FFUgMMpoU,342937
|
|
169
164
|
a_sync/asyncio/as_completed.c,sha256=jbM1c_UmHWd_oXnWAYNDDNz1kKCRw0Ev8vBOzxri52A,735119
|
|
170
|
-
a_sync/asyncio/sleep.cpython-311-darwin.so,sha256
|
|
165
|
+
a_sync/asyncio/sleep.cpython-311-darwin.so,sha256=-CDub8KMLfCGxn7YqgFzMWzD4F3CeJHNNflqb1q6Un4,84072
|
|
171
166
|
a_sync/asyncio/create_task.pyi,sha256=5H2z4k_2dGG2QTGjGEgP1N6ITuClYYWzkPbzaeQwKks,1864
|
|
172
167
|
a_sync/asyncio/igather.pyx,sha256=reJZ0Jkbx2MLu-LTrQ_hOPfhEdbFlPEQ9ro98sAcRRA,6574
|
|
173
168
|
a_sync/asyncio/gather.pyx,sha256=4ALHvhJPQsNtw7b9dsbhwmKpXEbiRzOCjMqagi3sTXs,8566
|
|
174
169
|
a_sync/asyncio/gather.c,sha256=MLhPvLSGGCpxgMNtiA8Xcx3nniDOLzMSVYnFbSFWukE,637555
|
|
175
170
|
a_sync/asyncio/create_task.pxd,sha256=x-sZVX-26NoqxYb5mH33uh2Mg-3AqqdYGXx4Ai7xZwU,143
|
|
176
171
|
a_sync/asyncio/as_completed.pyx,sha256=ar0gJ3iN6-4Jw8xy6i7KVJ54RnAGt1JWE85Wh6kPF48,9052
|
|
177
|
-
a_sync/asyncio/as_completed.cpython-311-darwin.so,sha256=
|
|
172
|
+
a_sync/asyncio/as_completed.cpython-311-darwin.so,sha256=e3bOIlFEyjLAB7sVgNjMWIISUmNwJsnyJ5qvl3Esyjg,187904
|
|
173
|
+
ez_a_sync-0.32.22.dist-info/RECORD,,
|
|
174
|
+
ez_a_sync-0.32.22.dist-info/WHEEL,sha256=sunMa2yiYbrNLGeMVDqEA0ayyJbHlex7SCn1TZrEq60,136
|
|
175
|
+
ez_a_sync-0.32.22.dist-info/top_level.txt,sha256=ew2xVyFeZE_a5XMEL64h7-vJIbaBQieaFcvBAWUpU_s,7
|
|
176
|
+
ez_a_sync-0.32.22.dist-info/METADATA,sha256=-ufQh9qrGBFLw3S-PW0gyYp2eLLtZSx1lgnwJEjxOQM,13197
|
|
177
|
+
ez_a_sync-0.32.22.dist-info/licenses/LICENSE.txt,sha256=1on6-17OUMlja6vSPTcmlmeT_DwujCZJijYxaplBvZk,1075
|
|
File without changes
|
|
File without changes
|
|
File without changes
|