ez-a-sync 0.32.20__cp311-cp311-win_amd64.whl → 0.32.22__cp311-cp311-win_amd64.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.cp311-win_amd64.pyd +0 -0
- a_sync/a_sync/_descriptor.cp311-win_amd64.pyd +0 -0
- a_sync/a_sync/_flags.cp311-win_amd64.pyd +0 -0
- a_sync/a_sync/_helpers.cp311-win_amd64.pyd +0 -0
- a_sync/a_sync/_kwargs.cp311-win_amd64.pyd +0 -0
- a_sync/a_sync/abstract.cp311-win_amd64.pyd +0 -0
- a_sync/a_sync/base.cp311-win_amd64.pyd +0 -0
- a_sync/a_sync/decorator.py +89 -0
- a_sync/a_sync/flags.cp311-win_amd64.pyd +0 -0
- a_sync/a_sync/function.cp311-win_amd64.pyd +0 -0
- a_sync/a_sync/method.cp311-win_amd64.pyd +0 -0
- a_sync/a_sync/modifiers/manager.cp311-win_amd64.pyd +0 -0
- a_sync/a_sync/property.cp311-win_amd64.pyd +0 -0
- a_sync/async_property/cached.cp311-win_amd64.pyd +0 -0
- a_sync/async_property/proxy.cp311-win_amd64.pyd +0 -0
- a_sync/asyncio/as_completed.cp311-win_amd64.pyd +0 -0
- a_sync/asyncio/create_task.cp311-win_amd64.pyd +0 -0
- a_sync/asyncio/gather.cp311-win_amd64.pyd +0 -0
- a_sync/asyncio/igather.cp311-win_amd64.pyd +0 -0
- a_sync/asyncio/sleep.cp311-win_amd64.pyd +0 -0
- a_sync/debugging.cp311-win_amd64.pyd +0 -0
- a_sync/debugging.pyi +6 -3
- a_sync/exceptions.cp311-win_amd64.pyd +0 -0
- a_sync/functools.cp311-win_amd64.pyd +0 -0
- a_sync/iter.cp311-win_amd64.pyd +0 -0
- a_sync/primitives/_debug.cp311-win_amd64.pyd +0 -0
- a_sync/primitives/_loggable.cp311-win_amd64.pyd +0 -0
- a_sync/primitives/locks/counter.cp311-win_amd64.pyd +0 -0
- a_sync/primitives/locks/event.cp311-win_amd64.pyd +0 -0
- a_sync/primitives/locks/prio_semaphore.cp311-win_amd64.pyd +0 -0
- a_sync/primitives/locks/semaphore.cp311-win_amd64.pyd +0 -0
- a_sync/utils/repr.cp311-win_amd64.pyd +0 -0
- {ez_a_sync-0.32.20.dist-info → ez_a_sync-0.32.22.dist-info}/METADATA +1 -1
- {ez_a_sync-0.32.20.dist-info → ez_a_sync-0.32.22.dist-info}/RECORD +38 -38
- {ez_a_sync-0.32.20.dist-info → ez_a_sync-0.32.22.dist-info}/WHEEL +1 -1
- {ez_a_sync-0.32.20.dist-info → ez_a_sync-0.32.22.dist-info}/licenses/LICENSE.txt +0 -0
- {ez_a_sync-0.32.20.dist-info → ez_a_sync-0.32.22.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
|
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
|
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.cp311-win_amd64.pyd
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,30 +1,30 @@
|
|
|
1
1
|
a_sync/ENVIRONMENT_VARIABLES.py,sha256=ikTsq2B3rUli665CTWkH_UsBwuXXAhrNvcosup6KsC8,1322
|
|
2
2
|
a_sync/__init__.pxd,sha256=u2LfI62DUKrUr5k3O5-65sWl-QETx6ozR8REh-qMv74,82
|
|
3
|
-
a_sync/__init__.py,sha256=
|
|
3
|
+
a_sync/__init__.py,sha256=tohlFfExaQi5ObUQzk83CXRuoqNrXClk77llHA-PNcs,5895
|
|
4
4
|
a_sync/_smart.c,sha256=x6IVquDE63Lb3vumdhVZQIlv_eV_3DO-henAPaBoCjI,917712
|
|
5
|
-
a_sync/_smart.cp311-win_amd64.pyd,sha256=
|
|
5
|
+
a_sync/_smart.cp311-win_amd64.pyd,sha256=EqgzCmZHgp7ppeSWM4w0TyqUeojEu6S-VbUf_YXCRtg,157696
|
|
6
6
|
a_sync/_smart.pxd,sha256=HfWxESAe26BGlvM20vLC7vcsv-N1jRaQbXd-HjUQ2wE,78
|
|
7
7
|
a_sync/_smart.pyi,sha256=rLRA5tB6H7CTTpUYGrwuweZ00YQDoxMKV4kDhoTYL3Y,5592
|
|
8
8
|
a_sync/_smart.pyx,sha256=q-3rCM4w3N_K-dbeEbtjQPKCP9cXCvWEsULHjxtvKPs,20446
|
|
9
9
|
a_sync/_typing.py,sha256=-5BrrywuQcO6noiArKCTdMDB29xeWp_E9BBJQC2oFLk,7108
|
|
10
10
|
a_sync/aliases.py,sha256=Ri300mMgj0EUmffx1g2FsfuglRd_Gc-8SlzLv0Sn8J8,215
|
|
11
11
|
a_sync/debugging.c,sha256=FrYwB87lULsdhxT72VUbpdloMnKaMBPy4bxxH7dA6jY,589347
|
|
12
|
-
a_sync/debugging.cp311-win_amd64.pyd,sha256=
|
|
13
|
-
a_sync/debugging.pyi,sha256=
|
|
12
|
+
a_sync/debugging.cp311-win_amd64.pyd,sha256=mnWjoUf_F4U59Hpu5t3EAyQ8AtA2p0NSyDfLJGDJAsI,105472
|
|
13
|
+
a_sync/debugging.pyi,sha256=YqShsfa-Bgviuyr3Os4bWQf8yS4w0wa4AZLcSfq1kvU,2387
|
|
14
14
|
a_sync/debugging.pyx,sha256=SusQeWBuibY_7BuldAwdcBAW5By-LbkEYrp2KqCvehM,3152
|
|
15
15
|
a_sync/exceptions.c,sha256=UIG9T4cxxNzObR5psF4wRQ9LehvDcKQB75OyWnBvkJ8,550538
|
|
16
|
-
a_sync/exceptions.cp311-win_amd64.pyd,sha256=
|
|
16
|
+
a_sync/exceptions.cp311-win_amd64.pyd,sha256=T-9lKJ_7xrOv1qaNqZI18TAFyPi26OyyNXLjqNmBlYw,106496
|
|
17
17
|
a_sync/exceptions.pyi,sha256=bU3gjEYwPF7EgA8BpqL9WfsuUO_VVdHy6Ke4yTJ-kDA,11210
|
|
18
18
|
a_sync/exceptions.pyx,sha256=7QxlRinyHBVEzCOuExfg-VN_CQ_kxW-cKYAWlCTV_mM,13644
|
|
19
19
|
a_sync/executor.py,sha256=Q2kebRUP_sJanV6XDrsgd6cn0KFgGZl-9pN-GcHh8I4,21976
|
|
20
20
|
a_sync/functools.c,sha256=4SJvN4_X9b7AQKP1P1TJ3rPej3t4vL5liZBPv6Y09lk,450429
|
|
21
|
-
a_sync/functools.cp311-win_amd64.pyd,sha256=
|
|
21
|
+
a_sync/functools.cp311-win_amd64.pyd,sha256=zmn4rkjrhv4q07oF7ChcvvE47MEhLe_YXdvvzhJKM7o,65024
|
|
22
22
|
a_sync/functools.pxd,sha256=SBLpWvCOU4103wWzKsZjNQnJ_KzGMYU_dBgFLkS4Y2w,193
|
|
23
23
|
a_sync/functools.pyi,sha256=NZbuO-psulMCNMEKlX4ZlkiZioFlyEmNG-pwOkmzl_E,1437
|
|
24
24
|
a_sync/functools.pyx,sha256=35fUpflI6a4l95eoqSVaKyXDXw-6tuH77C0oy_u2MFc,4976
|
|
25
25
|
a_sync/future.py,sha256=Wp92G-rmbRo-QBAjZcF-Ah142JzQec_ygOKqQknq-WM,50172
|
|
26
26
|
a_sync/iter.c,sha256=-FFmiTJV_cpFH45pdGE6vfYkM7YPqQmGTfjAoBFE_mk,1617444
|
|
27
|
-
a_sync/iter.cp311-win_amd64.pyd,sha256=
|
|
27
|
+
a_sync/iter.cp311-win_amd64.pyd,sha256=4cHnOOgTzN4VCqilhGeeua3E53WwQ9mislA_Lap2aMo,295936
|
|
28
28
|
a_sync/iter.pxd,sha256=MFhRBVeY4h4vg2zm1LH973air-2Lciy1IbrYekZmByM,438
|
|
29
29
|
a_sync/iter.pyi,sha256=csJ4fAXi4KX9r2zHKR6df0-WKbGE2jSXa9GB0FpizaU,15778
|
|
30
30
|
a_sync/iter.pyx,sha256=CLUrgkggB-HEXiDJ9IADwtJBZEQMcMOPGapQk2ZXgg0,38467
|
|
@@ -32,50 +32,50 @@ a_sync/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
32
32
|
a_sync/task.py,sha256=3GK-pruDOXmpODMmHFmHOdXwh8cpyheHkXDk-SVP-ks,35981
|
|
33
33
|
a_sync/a_sync/__init__.py,sha256=LwgGpuG7UVq8bE2K_Uwb21T7X9cs0QZHNzNdPaw11kU,2260
|
|
34
34
|
a_sync/a_sync/_descriptor.c,sha256=dEpW6Hh77Ml-xqLLc1ivACQOZ9dboJxzClwACnP5Agw,844153
|
|
35
|
-
a_sync/a_sync/_descriptor.cp311-win_amd64.pyd,sha256
|
|
35
|
+
a_sync/a_sync/_descriptor.cp311-win_amd64.pyd,sha256=-MzIyKf2bnlEoIO5_u7EOgLcg--Q8abS-DAEa0lI8hk,152064
|
|
36
36
|
a_sync/a_sync/_descriptor.pyi,sha256=vmiMY77NzOm7dlT3II-Lg6C8w_kVGz_KPm8Hh5hrFos,1377
|
|
37
37
|
a_sync/a_sync/_descriptor.pyx,sha256=2AQNRvgXGEYye5YvxRKTY3GFHRU-jyYs7fLojCzqVS4,14024
|
|
38
38
|
a_sync/a_sync/_flags.c,sha256=kOUys6kbZv-5t8S8EAJvstq0aItzDOs8_0m2Rbw-bu0,217277
|
|
39
|
-
a_sync/a_sync/_flags.cp311-win_amd64.pyd,sha256=
|
|
39
|
+
a_sync/a_sync/_flags.cp311-win_amd64.pyd,sha256=gkxHrGszu_TVsXe95rS-1z-jzcBOmZ_CzSpDC16nvtM,29696
|
|
40
40
|
a_sync/a_sync/_flags.pxd,sha256=Cg1AkZCQiQumx05MeorTagundpSWrOHbacGGi5vOv1k,191
|
|
41
41
|
a_sync/a_sync/_flags.pyx,sha256=MEhX5g-CRJUHKLUAuY7n_AOkBaQ92Wx_bvpha6n2o8w,2898
|
|
42
42
|
a_sync/a_sync/_helpers.c,sha256=fT7gnTFTYJp0IchJBtgA1OOzVqWlAHxgBhatMhSnAx4,551263
|
|
43
|
-
a_sync/a_sync/_helpers.cp311-win_amd64.pyd,sha256=
|
|
43
|
+
a_sync/a_sync/_helpers.cp311-win_amd64.pyd,sha256=8HLHOYta7xLUsbdN7ONl6eyQtMrm72LO7AyZ7OeBWaU,87040
|
|
44
44
|
a_sync/a_sync/_helpers.pxd,sha256=RYO8vxJqfoHcmLYG4lQQlEIdH5qcE0Ar5yOe6mRTIvo,120
|
|
45
45
|
a_sync/a_sync/_helpers.pyi,sha256=ewJ4yDFx-pP9beBj9lpYgateBqp3pr8_RHTvN9MgFZQ,329
|
|
46
46
|
a_sync/a_sync/_helpers.pyx,sha256=XUWBNmO8ehUQiEv14sZBdXAgJ9aMIJBfLqrcFmo34UA,5576
|
|
47
47
|
a_sync/a_sync/_kwargs.c,sha256=poF9JMB9HSHRB6ZVUKx-tUTZgkvDBB6I2hcUSfcNSWk,405241
|
|
48
|
-
a_sync/a_sync/_kwargs.cp311-win_amd64.pyd,sha256=
|
|
48
|
+
a_sync/a_sync/_kwargs.cp311-win_amd64.pyd,sha256=O-ml2RIOvX5hJUQDx2p-WBa3T9ezYzQWZMa6xw2Etr8,59904
|
|
49
49
|
a_sync/a_sync/_kwargs.pxd,sha256=dz6yAQQaGBGkt22S7ASk8jfeoSCEdWP2VHFiqht3r3A,94
|
|
50
50
|
a_sync/a_sync/_kwargs.pyx,sha256=VwGobiT_9tmRDEX7avQKjkn66wwLc9-933WDjvH-x_g,2039
|
|
51
51
|
a_sync/a_sync/_meta.py,sha256=MgNh72akj_H7hPYBRAvj6lUDohWa-eW3s9jW3PURN80,9639
|
|
52
52
|
a_sync/a_sync/abstract.c,sha256=lvXSz0-v7LCxJfWtJMdRfm_1DxBxAmoTjnwMBmPwyZo,461346
|
|
53
|
-
a_sync/a_sync/abstract.cp311-win_amd64.pyd,sha256=
|
|
53
|
+
a_sync/a_sync/abstract.cp311-win_amd64.pyd,sha256=JLocS9WhgnPySFJ0xl935NH9TsbBbooOn0umOdMQDlA,77312
|
|
54
54
|
a_sync/a_sync/abstract.pyi,sha256=Ttj4UHVvrH61EA-9v93LjAFpYYJ7RIxAkX6khonCJFk,5212
|
|
55
55
|
a_sync/a_sync/abstract.pyx,sha256=SW3tga3n8JcgEaJrPpsn9bKn_kjmb4_8za7_QWowT60,8085
|
|
56
56
|
a_sync/a_sync/base.c,sha256=BFDfzKxnKF0X_9F6CUFIk6UeGX_hR357OO4k961BHfE,562197
|
|
57
|
-
a_sync/a_sync/base.cp311-win_amd64.pyd,sha256=
|
|
57
|
+
a_sync/a_sync/base.cp311-win_amd64.pyd,sha256=3TIPrrJGWa9qlO15UxbNwWxYJE74DjF3SDDXlaYOW5o,93696
|
|
58
58
|
a_sync/a_sync/base.pyi,sha256=xoc15MCBymMIxGKumav6tYRPwD0BFyLsfNA4DeFtUMM,2386
|
|
59
59
|
a_sync/a_sync/base.pyx,sha256=a-G6AONvQwGs53Eo1Sj5ELpUFPHSiTZyrxEO-o8vJsk,10874
|
|
60
60
|
a_sync/a_sync/config.py,sha256=-dtN8cDc9jzuB7TPdbgjr_uz3hTvZGnOCOvcfeWBB6Y,6389
|
|
61
|
-
a_sync/a_sync/decorator.py,sha256=
|
|
61
|
+
a_sync/a_sync/decorator.py,sha256=RpIJPmbzAl8v-NhjhzKuJuMZP6TnjSU1R7h_DvMwlEA,20401
|
|
62
62
|
a_sync/a_sync/flags.c,sha256=3osmFZwsyK4PLS2J6KiexispdXiKg2QzgLptjqrMrXE,175745
|
|
63
|
-
a_sync/a_sync/flags.cp311-win_amd64.pyd,sha256=
|
|
63
|
+
a_sync/a_sync/flags.cp311-win_amd64.pyd,sha256=IyxAWCdMhqQVOuSRo2NBjDiamT_XCoHFR8LADHHgUi0,22016
|
|
64
64
|
a_sync/a_sync/flags.pxd,sha256=TThtgjklqi3JfeIfxp-En5NUQxAwuiJv0GtWAC1BdUM,2310
|
|
65
65
|
a_sync/a_sync/flags.pyi,sha256=3KofIEWkZkhht-v2t7U6PqGjx4Yf1O7hARgP8ASS-f0,2303
|
|
66
66
|
a_sync/a_sync/flags.pyx,sha256=V0uVMV6SUTYkjYAi6h4n060f9cHn3TRn-csVLsHe9rA,2377
|
|
67
67
|
a_sync/a_sync/function.c,sha256=hXrzTRSx1zUMG5_QivaiQ273wGy1h8YfLT5x6nMbL6Q,1715564
|
|
68
|
-
a_sync/a_sync/function.cp311-win_amd64.pyd,sha256=
|
|
68
|
+
a_sync/a_sync/function.cp311-win_amd64.pyd,sha256=uurIKxu75spX8ZW-jvCFEJV8ji4Geo0fwmkqakxxROs,297984
|
|
69
69
|
a_sync/a_sync/function.pxd,sha256=lQxdI1TT5i1BuJ0RyjC6lVfHYqLOY7-Je4o3rlIUxPs,858
|
|
70
70
|
a_sync/a_sync/function.pyi,sha256=l1DCBK43VMBA_DEAscuiVsUu4fq11nyqpGS9YjfkQVg,18561
|
|
71
71
|
a_sync/a_sync/function.pyx,sha256=WcOF614kaYqvKLUsbJBbCurALcy-kPLWl7Q6-vEx2Es,47636
|
|
72
72
|
a_sync/a_sync/method.c,sha256=fUQbwkqZYLLYt4gdKQEeRHraxkd1Mm7I1lhaeTYNVzo,1390340
|
|
73
|
-
a_sync/a_sync/method.cp311-win_amd64.pyd,sha256=
|
|
73
|
+
a_sync/a_sync/method.cp311-win_amd64.pyd,sha256=P-Utpjjb8QgYEew09FMZ_j4Wt0O2GDTbUP0macRFRoA,267264
|
|
74
74
|
a_sync/a_sync/method.pxd,sha256=zuwv-bw-vpm-lrd9FwhEEiBjZFF5lc9fBdBgCBWYyrA,481
|
|
75
75
|
a_sync/a_sync/method.pyi,sha256=ydRbo0J_9zj_ZGY0mipO0rcCo9LJ6m79xCSu5RIF9B8,18339
|
|
76
76
|
a_sync/a_sync/method.pyx,sha256=86HbaKU3EUj4uHffWxdmW297QGDDre89HPIxJHqUo4s,37169
|
|
77
77
|
a_sync/a_sync/property.c,sha256=4YnCCReLIaDS6_3KJXwhkUiyEHiyW2wHCKGhQj_ZmcE,1248800
|
|
78
|
-
a_sync/a_sync/property.cp311-win_amd64.pyd,sha256=
|
|
78
|
+
a_sync/a_sync/property.cp311-win_amd64.pyd,sha256=CFN9PiH3xJ3XiNseZdo9TZacqqjr2reZ2S-DnplV-MU,236544
|
|
79
79
|
a_sync/a_sync/property.pyi,sha256=2-6xOI9RUOzZVEF_teH8Qd5tU-2R5ym1l4hYOdRs-1I,14056
|
|
80
80
|
a_sync/a_sync/property.pyx,sha256=4VqJPt60NpM5iAs9rL2r8u8GJcm7Qwnn50eZs1FTAjo,28623
|
|
81
81
|
a_sync/a_sync/singleton.py,sha256=jTKNWUQeOWzQuswgquqP10ndq5-H8a4f0uYZvfpXIOw,2555
|
|
@@ -83,7 +83,7 @@ a_sync/a_sync/modifiers/__init__.pxd,sha256=17tPpMY2ByVbMGIpI5kiP3WX8V9IM5ZHJp0Y
|
|
|
83
83
|
a_sync/a_sync/modifiers/__init__.py,sha256=taOyVb9G14B4hkM3Si5_rAP7pKF_Aeq9KZFCNPAVLLU,4260
|
|
84
84
|
a_sync/a_sync/modifiers/limiter.py,sha256=jt9FpK98AYZXFgNUIGRM3G2J9eVJuRthajcr0KvFyeg,4435
|
|
85
85
|
a_sync/a_sync/modifiers/manager.c,sha256=GB8ALm6VuwXYF3QBAS5d90q_GjegTsoDbz1BOivP_l8,626548
|
|
86
|
-
a_sync/a_sync/modifiers/manager.cp311-win_amd64.pyd,sha256=
|
|
86
|
+
a_sync/a_sync/modifiers/manager.cp311-win_amd64.pyd,sha256=9ufR81ThHT51yY8eT0vPunTjKS5or9B9KEbBpFpikbA,107008
|
|
87
87
|
a_sync/a_sync/modifiers/manager.pxd,sha256=wj0f_5FEeXmEIoWier-OlAvV8cQt2FzoLippsoOxhQM,188
|
|
88
88
|
a_sync/a_sync/modifiers/manager.pyi,sha256=ghzuXdxNHkzZzr1fcGt6BXAT4v3EP_r0qa55LG0p4WE,6441
|
|
89
89
|
a_sync/a_sync/modifiers/manager.pyx,sha256=W8ljOPcwAhWaHqkKfLjT0e5BaW4JX_NDE7UczrampO8,9695
|
|
@@ -93,49 +93,49 @@ a_sync/a_sync/modifiers/cache/memory.py,sha256=a1qcYmrYuwp8OP8SGJGxQU-DP7JzTBA-5
|
|
|
93
93
|
a_sync/async_property/__init__.pxd,sha256=EGawuQLZIz7ZZLOFmaOQAFUVvabadR0aPYBW7U4TaCo,74
|
|
94
94
|
a_sync/async_property/__init__.py,sha256=qMz555CGN4cL3VunLtS6KxtpPr_QXR2jAf7gyWflLfg,64
|
|
95
95
|
a_sync/async_property/cached.c,sha256=CAKViAhWWlZEWOXeGJI3u6NTxnR9NOnHZwJiuDlBwyI,858377
|
|
96
|
-
a_sync/async_property/cached.cp311-win_amd64.pyd,sha256=
|
|
96
|
+
a_sync/async_property/cached.cp311-win_amd64.pyd,sha256=36q8BD9_liZic2Op63csiamqn08FnzkFraYzEq2B8bg,143360
|
|
97
97
|
a_sync/async_property/cached.pxd,sha256=unwYQ9C9VcC67hGmKO9ZZRJLNY1bH9z0sItLnMH0mVs,348
|
|
98
98
|
a_sync/async_property/cached.pyi,sha256=KPd6V8ENsM-49QUupsLCniW-fnQB8so06OiliiIvSrI,1859
|
|
99
99
|
a_sync/async_property/cached.pyx,sha256=l5W9PAuRzMjnPiBXG3imL7BrjAG0_gZyge1yJoaNe0c,6492
|
|
100
100
|
a_sync/async_property/proxy.c,sha256=ETHjdjmh-1prdiuwMooZ3XjUXtEvrn_A3wJcTIqEd-g,1514503
|
|
101
|
-
a_sync/async_property/proxy.cp311-win_amd64.pyd,sha256=
|
|
101
|
+
a_sync/async_property/proxy.cp311-win_amd64.pyd,sha256=1K8H5a0FZDzVjYPvi3jne5sGOq5EVcUs7jbTxFY0Fh0,263680
|
|
102
102
|
a_sync/async_property/proxy.pxd,sha256=zWc3550KyWxwZobdiYJabB93Nq8IMpgs32JrHYPPI10,48
|
|
103
103
|
a_sync/async_property/proxy.pyi,sha256=vLG3DxScefR32MlHfnTgYPQk04BHvmi_N8hp_1COvU4,4342
|
|
104
104
|
a_sync/async_property/proxy.pyx,sha256=WgalGnGFlJnBiE28KCGloQnHxKSmDeP4HR_RQ0p0wHs,13769
|
|
105
105
|
a_sync/asyncio/__init__.pxd,sha256=HJQrseYJ2Zt7tf3thkbL5pb4I3d4L5rg_sDNaTLGDZk,341
|
|
106
106
|
a_sync/asyncio/__init__.py,sha256=Nc7RxGgRQP2EVG8k_T53eHO2hS8xQ7n6XgfSXBqyma4,6497
|
|
107
107
|
a_sync/asyncio/as_completed.c,sha256=Owdg3kUVNv399LRN6qajBv6TAHc7sK7km9RNu6RzW1g,735129
|
|
108
|
-
a_sync/asyncio/as_completed.cp311-win_amd64.pyd,sha256=
|
|
108
|
+
a_sync/asyncio/as_completed.cp311-win_amd64.pyd,sha256=mJzs4aoXGkdVU0H-CiYea0L0PGMepc5fix-WzqQtYR8,130048
|
|
109
109
|
a_sync/asyncio/as_completed.pxd,sha256=nm7WdrTBIMndSNZ1SjozFyNu8HGdDL7HftwLEHsjYew,169
|
|
110
110
|
a_sync/asyncio/as_completed.pyi,sha256=v7ao3rxDtwfvTSu6rCU3Irr0r2jPugOF3IZtLptTgmM,3862
|
|
111
111
|
a_sync/asyncio/as_completed.pyx,sha256=IS_nGBBa5wrBTa6WLTqA1FGTJshY6C3D99icOL-XJ-o,9321
|
|
112
112
|
a_sync/asyncio/create_task.c,sha256=mcMGXSK2sXmfkQGyMZt-NSP8L-5npDUqmXYFIEZc5Ew,603778
|
|
113
|
-
a_sync/asyncio/create_task.cp311-win_amd64.pyd,sha256=
|
|
113
|
+
a_sync/asyncio/create_task.cp311-win_amd64.pyd,sha256=LEvIMh4dUqKED7JVgX2F9bYFrQchE0CzbXR4nwUSJJo,100352
|
|
114
114
|
a_sync/asyncio/create_task.pxd,sha256=esCVrntjoKKYKiyfdZHrWWplZ4pnoe3-rXtipOJrRkM,144
|
|
115
115
|
a_sync/asyncio/create_task.pyi,sha256=wN_pcttfJTJrA9TiTJ3qYaiLnI4ikQVFvH44c2nnJE4,1915
|
|
116
116
|
a_sync/asyncio/create_task.pyx,sha256=FgFcIgsSq4eX8U_G3xNKdqDtbL4iLJx28YwYZY3gv44,9047
|
|
117
117
|
a_sync/asyncio/gather.c,sha256=uXOlH53Ivgm31Umsh2zH9Y64DsVq4y9E5G7XMTIc0SQ,637565
|
|
118
|
-
a_sync/asyncio/gather.cp311-win_amd64.pyd,sha256=
|
|
118
|
+
a_sync/asyncio/gather.cp311-win_amd64.pyd,sha256=Q9i39JL-hWtJZkh0vC0_eXE2kYVDOLqITOJYV5hpeqY,113664
|
|
119
119
|
a_sync/asyncio/gather.pyi,sha256=wfi_z1UZzXpq3fEyd2L9N8IVvEY_fbHHpDe2Qy32mcw,4622
|
|
120
120
|
a_sync/asyncio/gather.pyx,sha256=zCUaTcTIUl1YJLkl0WBTgrEUMCY-uVcWl-gU7eRpf5Q,8783
|
|
121
121
|
a_sync/asyncio/igather.c,sha256=HXHgJNFflvb88wllKn_aAuP8rUjeEm31VkbETgfuwyk,471347
|
|
122
|
-
a_sync/asyncio/igather.cp311-win_amd64.pyd,sha256=
|
|
122
|
+
a_sync/asyncio/igather.cp311-win_amd64.pyd,sha256=iIaeXrHmEJIM34cger0ZxT4g2V5njhpOtmx5PkjVxtI,66560
|
|
123
123
|
a_sync/asyncio/igather.pxd,sha256=M9hMUtgp6118pa0ddR9daQubvnceefnbt4pbvEl0doE,71
|
|
124
124
|
a_sync/asyncio/igather.pyi,sha256=aNLP9ViC5Cid1ikgBZUCme2XiMKiwxZEkBZWAw4_IJQ,208
|
|
125
125
|
a_sync/asyncio/igather.pyx,sha256=M6VWmCQkdZprqPCTpdz-77uj6BkZPQvupZYfr2FQDMI,6756
|
|
126
126
|
a_sync/asyncio/sleep.c,sha256=mLfTbZuwUSzkrV1I0OdS25V368xSnH_TQZahbcZW5Dk,342947
|
|
127
|
-
a_sync/asyncio/sleep.cp311-win_amd64.pyd,sha256=
|
|
127
|
+
a_sync/asyncio/sleep.cp311-win_amd64.pyd,sha256=1QrpbpROWgwKjxBKpgpgprRvTUBniE3UYiS-W2RvGWM,46080
|
|
128
128
|
a_sync/asyncio/sleep.pyi,sha256=zy3g-AE9OF3SUrGm5cVlRcK7uVwkV4DBjXF0D_dqSsU,551
|
|
129
129
|
a_sync/asyncio/sleep.pyx,sha256=GR6sv4AswrGMpF36Bz5Boelqvz5rlNNNA9UtEZj33fo,1322
|
|
130
130
|
a_sync/primitives/__init__.pxd,sha256=FIO-eD4HaJ259mz3XB6HE1YF4tDej6ojrxQ_kx-tMwM,38
|
|
131
131
|
a_sync/primitives/__init__.py,sha256=LSzq3o0aXdwb-g96_YubEu3MmI1uA3FWwdbsE8wTS0Y,1695
|
|
132
132
|
a_sync/primitives/_debug.c,sha256=e30i1ogEoq0aqt23G9o83JhLb47Rv1p6hnpOLuFkhhA,600626
|
|
133
|
-
a_sync/primitives/_debug.cp311-win_amd64.pyd,sha256=
|
|
133
|
+
a_sync/primitives/_debug.cp311-win_amd64.pyd,sha256=TY6-eR1wFE2OnDjKy4kiMmn2pTMvqTSXdKYqIIui5a4,99328
|
|
134
134
|
a_sync/primitives/_debug.pxd,sha256=EK81O2ckrn3E8uwoU_R2Gorx6myk5Pt_v2Ike8ME1q4,476
|
|
135
135
|
a_sync/primitives/_debug.pyi,sha256=hEWnWusF3jh-hc3gYenX76WAuMXtyopsAXFzrDAWXlw,2227
|
|
136
136
|
a_sync/primitives/_debug.pyx,sha256=oT_H6VB_Ng3K8iwQTcAF2n5Y5Ks1nm-vW3XE1dehdBI,8072
|
|
137
137
|
a_sync/primitives/_loggable.c,sha256=kshS4IudRMmfHhaLDfozFAA7a-eCJAHqXZxqx4JrcAY,419948
|
|
138
|
-
a_sync/primitives/_loggable.cp311-win_amd64.pyd,sha256=
|
|
138
|
+
a_sync/primitives/_loggable.cp311-win_amd64.pyd,sha256=PWR0_Lm7cD3IRnIY2o452DV9luESDj1GQKVySMeZ12I,63488
|
|
139
139
|
a_sync/primitives/_loggable.pxd,sha256=diuZ-6UFy8PKj2wzhq4TLiAO9WDl4zmdNXJMtxAs7jA,136
|
|
140
140
|
a_sync/primitives/_loggable.pyi,sha256=RpLX46Tb3xrpQGWfniENNFgM0-PTcaZtvzuGS-Z0X2M,2000
|
|
141
141
|
a_sync/primitives/_loggable.pyx,sha256=MZ4cVSib3xWgYHNsu1FCSW6G13yCqaEV2eVAmIeLMCU,3105
|
|
@@ -143,22 +143,22 @@ a_sync/primitives/queue.py,sha256=zbmn2e6FJ1R_IHEFrc2gQOwqekAC-Dv3GYNMJ4DGqPc,34
|
|
|
143
143
|
a_sync/primitives/locks/__init__.pxd,sha256=RwmeBP3FZ8uMGxmpfeRkKumqF8awArLuQvNMHurZoDU,310
|
|
144
144
|
a_sync/primitives/locks/__init__.py,sha256=3HUsoO6Bim8rn9uL9XJ5tPHfqA2TKe6-d_60CDMMfQU,453
|
|
145
145
|
a_sync/primitives/locks/counter.c,sha256=mnWk4AMwP1SP0YQKIgZiYUCzv9qxR6ZXr5bpDKoxZP0,713296
|
|
146
|
-
a_sync/primitives/locks/counter.cp311-win_amd64.pyd,sha256=
|
|
146
|
+
a_sync/primitives/locks/counter.cp311-win_amd64.pyd,sha256=Hvoerg1qDWpTcUd7jer2iL9TU1jlSoFBvMedq0yiG2o,116224
|
|
147
147
|
a_sync/primitives/locks/counter.pxd,sha256=gnzExZDKySYNDeNuy1r8WygP6lwj8y1QsJc4Htto3lw,421
|
|
148
148
|
a_sync/primitives/locks/counter.pyi,sha256=YPilGVSVIqsZ-Dig66FlTS7qlg7rIPqBCtnyhLVq_PA,5228
|
|
149
149
|
a_sync/primitives/locks/counter.pyx,sha256=7MVhLuqYPYvFG51e6hRFJSqXwnxT9-iH4inIt6YWfDU,9315
|
|
150
150
|
a_sync/primitives/locks/event.c,sha256=7QqRwfUV78k9o0IOTZeNOYndUMB3hP89sibv9-kwOXU,655955
|
|
151
|
-
a_sync/primitives/locks/event.cp311-win_amd64.pyd,sha256=
|
|
151
|
+
a_sync/primitives/locks/event.cp311-win_amd64.pyd,sha256=n0jHl-oiHTCuN9Im-IRRdK4qx6Tlp-ib9nm-BA2a4jY,107520
|
|
152
152
|
a_sync/primitives/locks/event.pxd,sha256=nB_Su_K05uYlCp3hlFv0KQhUYQ7spsZKb-9I4cyA-Po,717
|
|
153
153
|
a_sync/primitives/locks/event.pyi,sha256=8WiCAzARjugBY4AoedpDqlfdt2VdynYgrP-HhEiX7Pw,1499
|
|
154
154
|
a_sync/primitives/locks/event.pyx,sha256=ybzomSEg6Focpj0Q75camw1-Cxm1V7aDe6tFGnfDGIw,6234
|
|
155
155
|
a_sync/primitives/locks/prio_semaphore.c,sha256=WZ6Tg6443Pn7sVjQEyFYW2JD3Mc_-XLcSjJY94gWAIE,1161492
|
|
156
|
-
a_sync/primitives/locks/prio_semaphore.cp311-win_amd64.pyd,sha256=
|
|
156
|
+
a_sync/primitives/locks/prio_semaphore.cp311-win_amd64.pyd,sha256=4lv87eIpkoTMqgT7I0BhJ4RTs3LfVxuJZAQAjiiLmZE,179200
|
|
157
157
|
a_sync/primitives/locks/prio_semaphore.pxd,sha256=3wLcicrWU5A-melPp8eR_0G7fz57G0MqasjjurSCmyM,1066
|
|
158
158
|
a_sync/primitives/locks/prio_semaphore.pyi,sha256=dwCNf016XEErdKYk63vpvL3T0I4IZfRYW2bKANZ-V5Y,7861
|
|
159
159
|
a_sync/primitives/locks/prio_semaphore.pyx,sha256=YZ6Ur0IzNK9mPP2pNiBzzGSGEqywHbxKHzSGcG0bwGA,22693
|
|
160
160
|
a_sync/primitives/locks/semaphore.c,sha256=jRK-vIx4faUU04VpU4RZlOtCtfC-ke_isXjA825BF20,1135596
|
|
161
|
-
a_sync/primitives/locks/semaphore.cp311-win_amd64.pyd,sha256=
|
|
161
|
+
a_sync/primitives/locks/semaphore.cp311-win_amd64.pyd,sha256=M1mO-uPwJ2axxBNvo_aBhvqRVlBfw0T343XqptcP2ec,183808
|
|
162
162
|
a_sync/primitives/locks/semaphore.pxd,sha256=SyiWMzUyY12YFDvnzGQbjc2Xp5uBeWrrbzzjDn5vjQY,606
|
|
163
163
|
a_sync/primitives/locks/semaphore.pyi,sha256=PyVMqrP4Uy_6422iP2LATc_KjGmc-FM9pKq3Pv-lT5Q,6171
|
|
164
164
|
a_sync/primitives/locks/semaphore.pyx,sha256=UFbg5MCaR3-daWh011JqAfARy9mrldKl__Ox0AFca_g,15419
|
|
@@ -167,11 +167,11 @@ a_sync/sphinx/ext.py,sha256=ID0YgAYrUuVml2lU5m-1T7Os6U2tq31BdE6kA3ic8Ag,9206
|
|
|
167
167
|
a_sync/utils/__init__.py,sha256=RL6TMpTccKytj3nft1iDRbNQCL4zy27BO7J3zwYBg5Y,3318
|
|
168
168
|
a_sync/utils/iterators.py,sha256=QhXHC2pU-KR_1Icdg3heYt3O53JMqtIrbAMH1M9t3zk,11352
|
|
169
169
|
a_sync/utils/repr.c,sha256=lRCtRDUi0yyQnbYN7dUiy3Ubc2kFZH69DOYdGGGfxNE,571761
|
|
170
|
-
a_sync/utils/repr.cp311-win_amd64.pyd,sha256=
|
|
170
|
+
a_sync/utils/repr.cp311-win_amd64.pyd,sha256=PnRRS8D9F5QHOyKpb7wssrydac_KNmLZ4ey9zHTTaaQ,87552
|
|
171
171
|
a_sync/utils/repr.pyi,sha256=rderVJevHMbNST7yN9mWkDCdfBUBwhluuuUmAPiK60U,133
|
|
172
172
|
a_sync/utils/repr.pyx,sha256=xjS2rosYFHzpfy9ccdNVSAWOzX8JDE35hrwUiJUuqNM,2705
|
|
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.22.dist-info/licenses/LICENSE.txt,sha256=m-MQLU0LnrbQRgqugjggMDXxTe0meMb8HwioffmuEIM,1091
|
|
174
|
+
ez_a_sync-0.32.22.dist-info/METADATA,sha256=pOIU8uSfpO9cySFrEvzD7YBlhhhsoHJ3syttPMZM28M,13564
|
|
175
|
+
ez_a_sync-0.32.22.dist-info/WHEEL,sha256=JLOMsP7F5qtkAkINx5UnzbFguf8CqZeraV8o04b0I8I,101
|
|
176
|
+
ez_a_sync-0.32.22.dist-info/top_level.txt,sha256=ew2xVyFeZE_a5XMEL64h7-vJIbaBQieaFcvBAWUpU_s,7
|
|
177
|
+
ez_a_sync-0.32.22.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|