ez-a-sync 0.32.10__cp38-cp38-macosx_11_0_arm64.whl → 0.32.11__cp38-cp38-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 +1364 -1482
- a_sync/_smart.cpython-38-darwin.so +0 -0
- a_sync/_smart.pyx +17 -6
- a_sync/a_sync/_descriptor.cpython-38-darwin.so +0 -0
- a_sync/a_sync/_flags.cpython-38-darwin.so +0 -0
- a_sync/a_sync/_helpers.cpython-38-darwin.so +0 -0
- a_sync/a_sync/_kwargs.cpython-38-darwin.so +0 -0
- a_sync/a_sync/abstract.cpython-38-darwin.so +0 -0
- a_sync/a_sync/base.cpython-38-darwin.so +0 -0
- a_sync/a_sync/flags.cpython-38-darwin.so +0 -0
- a_sync/a_sync/function.cpython-38-darwin.so +0 -0
- a_sync/a_sync/method.cpython-38-darwin.so +0 -0
- a_sync/a_sync/modifiers/manager.c +614 -937
- a_sync/a_sync/modifiers/manager.cpython-38-darwin.so +0 -0
- a_sync/a_sync/modifiers/manager.pyx +4 -1
- a_sync/a_sync/property.c +250 -244
- a_sync/a_sync/property.cpython-38-darwin.so +0 -0
- a_sync/a_sync/property.pyx +4 -4
- a_sync/async_property/cached.cpython-38-darwin.so +0 -0
- a_sync/async_property/proxy.cpython-38-darwin.so +0 -0
- a_sync/asyncio/as_completed.cpython-38-darwin.so +0 -0
- a_sync/asyncio/create_task.cpython-38-darwin.so +0 -0
- a_sync/asyncio/gather.cpython-38-darwin.so +0 -0
- a_sync/asyncio/igather.cpython-38-darwin.so +0 -0
- a_sync/asyncio/sleep.cpython-38-darwin.so +0 -0
- a_sync/debugging.cpython-38-darwin.so +0 -0
- a_sync/exceptions.cpython-38-darwin.so +0 -0
- a_sync/functools.cpython-38-darwin.so +0 -0
- a_sync/iter.cpython-38-darwin.so +0 -0
- a_sync/primitives/_debug.cpython-38-darwin.so +0 -0
- a_sync/primitives/_loggable.cpython-38-darwin.so +0 -0
- a_sync/primitives/locks/counter.cpython-38-darwin.so +0 -0
- a_sync/primitives/locks/event.cpython-38-darwin.so +0 -0
- a_sync/primitives/locks/prio_semaphore.cpython-38-darwin.so +0 -0
- a_sync/primitives/locks/semaphore.cpython-38-darwin.so +0 -0
- a_sync/utils/repr.cpython-38-darwin.so +0 -0
- {ez_a_sync-0.32.10.dist-info → ez_a_sync-0.32.11.dist-info}/METADATA +1 -1
- {ez_a_sync-0.32.10.dist-info → ez_a_sync-0.32.11.dist-info}/RECORD +41 -41
- {ez_a_sync-0.32.10.dist-info → ez_a_sync-0.32.11.dist-info}/LICENSE.txt +0 -0
- {ez_a_sync-0.32.10.dist-info → ez_a_sync-0.32.11.dist-info}/WHEEL +0 -0
- {ez_a_sync-0.32.10.dist-info → ez_a_sync-0.32.11.dist-info}/top_level.txt +0 -0
|
Binary file
|
a_sync/a_sync/property.pyx
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import asyncio
|
|
2
|
-
import copy
|
|
3
2
|
import functools
|
|
4
3
|
import typing
|
|
4
|
+
from copy import copy as _copy
|
|
5
5
|
from logging import getLogger
|
|
6
6
|
from typing import Any, Awaitable, Callable, Generator, Optional, Tuple, Type, Union
|
|
7
7
|
|
|
@@ -37,8 +37,8 @@ cdef object Task = asyncio.Task
|
|
|
37
37
|
del asyncio
|
|
38
38
|
|
|
39
39
|
# cdef copy
|
|
40
|
-
cdef object
|
|
41
|
-
del
|
|
40
|
+
cdef object copy = _copy
|
|
41
|
+
del _copy
|
|
42
42
|
|
|
43
43
|
# cdef functools
|
|
44
44
|
cdef object partial = functools.partial
|
|
@@ -502,7 +502,7 @@ class ASyncCachedPropertyDescriptor(
|
|
|
502
502
|
instance_context = {"property": self, "instance": instance}
|
|
503
503
|
if e.args and e.args[-1] != instance_context:
|
|
504
504
|
e.args = *e.args, instance_context
|
|
505
|
-
raise
|
|
505
|
+
raise copy(e).with_traceback(e.__traceback__)
|
|
506
506
|
|
|
507
507
|
if self._fset is not None:
|
|
508
508
|
self._fset(instance, value)
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
a_sync/iter.cpython-38-darwin.so
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
a_sync/debugging.c,sha256=0DDVbUYYKbezBHshu4_b-mzZ0cuvxFE6CpfrqsMV00w,589308
|
|
2
|
-
a_sync/_smart.cpython-38-darwin.so,sha256=
|
|
3
|
-
a_sync/iter.cpython-38-darwin.so,sha256=
|
|
2
|
+
a_sync/_smart.cpython-38-darwin.so,sha256=ifDjH-h9bX5QcHedAeyZFxSbd0Jth_Hxlht6caAfqb0,225096
|
|
3
|
+
a_sync/iter.cpython-38-darwin.so,sha256=bFzUG-vfx_KVMhyiKkf8RI7lhjo7C6PgO005CdKsS5k,408376
|
|
4
4
|
a_sync/task.py,sha256=Es9UpImBgCtggVTzcw40ta2pVnphLinK3qI3Ei_SKdw,34632
|
|
5
|
-
a_sync/_smart.c,sha256=
|
|
5
|
+
a_sync/_smart.c,sha256=nTH9yAWTGBSaHvCGsvha9_dEtr-pX-XyVT3EJoDMTAo,913683
|
|
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
|
|
@@ -10,14 +10,14 @@ a_sync/ENVIRONMENT_VARIABLES.py,sha256=YgIB8mQRqQBLbD3DdwMjx4ylqO8pK3GUvSNCerWJz
|
|
|
10
10
|
a_sync/iter.pyx,sha256=TKzdMQkI74oKdgW-Us1WSgE5_KdS_7dOUykAmTHiXgU,37486
|
|
11
11
|
a_sync/__init__.pxd,sha256=ol4jqkvuweaaU8GQU_Mq9rak8IIsagYTdhYhbKK74ac,81
|
|
12
12
|
a_sync/functools.pxd,sha256=hhygzVpa5tXnDWR1pi_WLkOBd_1mC60K3279wYFEfA8,187
|
|
13
|
-
a_sync/debugging.cpython-38-darwin.so,sha256=
|
|
13
|
+
a_sync/debugging.cpython-38-darwin.so,sha256=UbemX2bvYCk8e1l4F1AmPtEdkm6UCLYnjDqL_SQccHU,149920
|
|
14
14
|
a_sync/_smart.pxd,sha256=3FlPqSvAtmGXIDFzfm7wpkvL6xt8z8w-vwow4Lura2g,76
|
|
15
|
-
a_sync/exceptions.cpython-38-darwin.so,sha256=
|
|
15
|
+
a_sync/exceptions.cpython-38-darwin.so,sha256=Aa3NE9QHfnHU0T3qIS6rRnY2Cg26a80NU751fTkhBmU,158336
|
|
16
16
|
a_sync/exceptions.pyi,sha256=NnBEKUBzBCl0kLj75ukwyQeWXjwPSkDg-NxKsXh-Ans,10834
|
|
17
17
|
a_sync/__init__.py,sha256=UrDqNkHGqvSY4O9wM9ObaoOP00cLq1sM-ucRnUvLyKk,5726
|
|
18
18
|
a_sync/debugging.pyx,sha256=Z29Lek1NyUXVFHjfk9O6XWxPNk1uRFyY6tK6fTfgxGM,3045
|
|
19
19
|
a_sync/aliases.py,sha256=TbLyuLeFfJEmcC5-NP6h4DQ9QXlQjGny2NUP_x1tflw,212
|
|
20
|
-
a_sync/_smart.pyx,sha256=
|
|
20
|
+
a_sync/_smart.pyx,sha256=WqVvzJebLwYynARG5IAB4aZ_HWY_baVUpbGL2qvXzSI,19168
|
|
21
21
|
a_sync/functools.c,sha256=KwvIpLg4DT2z4P-VlvJLL2pR3CeWdQslyKLOY4xrQlI,450421
|
|
22
22
|
a_sync/functools.pyx,sha256=F-Vp5JrhEt4jaFQDx48FadI7NGLlPfoIPWRWHTQob0Q,4837
|
|
23
23
|
a_sync/iter.c,sha256=XmEDM2hAUhyvwT_pGhivBBk5OdIb01HAjZpfsjkiFJY,1611802
|
|
@@ -27,15 +27,15 @@ a_sync/future.py,sha256=CK3t7BE1AfuFhWLFw50rFaCox0IRYW2x0HqVpOJC6o8,48675
|
|
|
27
27
|
a_sync/iter.pyi,sha256=785C3RAcRT69ngv3LfEE56Sf8hyLqapxS94uqfz1na8,15412
|
|
28
28
|
a_sync/exceptions.c,sha256=7juaOwpPuyUNyMcN3KavW1QM6uUIDHYKwTQBf3PYpH8,550527
|
|
29
29
|
a_sync/exceptions.pyx,sha256=MGgpBVAESC-5TtEEECgs74ZIx5ToR6qi_stfmnCyoaQ,13201
|
|
30
|
-
a_sync/functools.cpython-38-darwin.so,sha256=
|
|
30
|
+
a_sync/functools.cpython-38-darwin.so,sha256=2GJ3C62xyjndqUtJLL0x7mZC7PIA5E7MGZWD4Hywr-I,122144
|
|
31
31
|
a_sync/debugging.pyi,sha256=82AWVId_ghlFnIZkB3IQiEPqW9Yn3gKwknWNX6CCRLM,2257
|
|
32
32
|
a_sync/executor.py,sha256=bacluNlegqlioPxlcFOTaGiH2ylXJYkfBSsUMnQqOWQ,21401
|
|
33
|
-
a_sync/a_sync/_flags.cpython-38-darwin.so,sha256=
|
|
33
|
+
a_sync/a_sync/_flags.cpython-38-darwin.so,sha256=vv1rY1U9XHibb7ZOoeUmRNuUUd9WuEnLNu6CMIRhDZo,76472
|
|
34
34
|
a_sync/a_sync/_kwargs.pxd,sha256=RdEVKGXeBvq5_O4WkRXtjKdi8FV6oNPGhtJ-epUnr1M,92
|
|
35
35
|
a_sync/a_sync/abstract.pyx,sha256=OUp1CJ3NnBInC5agJ-6Ob_n6HfjkHY-f_6gPgZxaGx8,7864
|
|
36
|
-
a_sync/a_sync/method.cpython-38-darwin.so,sha256=
|
|
37
|
-
a_sync/a_sync/flags.cpython-38-darwin.so,sha256=
|
|
38
|
-
a_sync/a_sync/abstract.cpython-38-darwin.so,sha256=
|
|
36
|
+
a_sync/a_sync/method.cpython-38-darwin.so,sha256=ueN4QU0e6FQ6px3xlSHvo_RUKjKCKAdQ61iCf614qYo,319352
|
|
37
|
+
a_sync/a_sync/flags.cpython-38-darwin.so,sha256=6H2r3cDPW8i9lQ8sUcO8lp7XMZu1KLZmku5x9pepBiw,56232
|
|
38
|
+
a_sync/a_sync/abstract.cpython-38-darwin.so,sha256=8lEuEHBQpPPQogs6nHqPjKrAMedv0at8r-kehPMP-Ww,122368
|
|
39
39
|
a_sync/a_sync/base.pyi,sha256=t7AsaZzf74djHjkAA7Dnzf12sG1ppoxpwm0Iyn1GM3w,2326
|
|
40
40
|
a_sync/a_sync/_meta.py,sha256=PnmPbTSGOB3WMjJUj8FfhafrkGcWJ-SzjYeENfS37NI,9427
|
|
41
41
|
a_sync/a_sync/_flags.pyx,sha256=suOkvo37BZ9RIOdCpAdsXgk_98IOkn6jr1Ss5yunvdU,2806
|
|
@@ -45,29 +45,29 @@ a_sync/a_sync/_helpers.pxd,sha256=VG28VRW-jlTZJ-0H-W8Y8u5gw8zUVIbsb3nW-REI_Z4,11
|
|
|
45
45
|
a_sync/a_sync/config.py,sha256=siXP4CFLQ_vswuG5K-G6cOSjQ6xKc1gN7-XNHFN2tFU,6221
|
|
46
46
|
a_sync/a_sync/_flags.c,sha256=hxVtZT5faViQExnKIQnSBb-p9Rbqpxpor9dNxQH9dZA,217269
|
|
47
47
|
a_sync/a_sync/decorator.py,sha256=CdZuy_ql4oxzg4qbxCHTtHrGnMkxJKs1LwzlmLdX3Uc,17188
|
|
48
|
-
a_sync/a_sync/property.c,sha256=
|
|
48
|
+
a_sync/a_sync/property.c,sha256=xNyEG7-rehLJ5sSqjJopkWCkXvDf8CvT6ZAk_emBoJQ,1243816
|
|
49
49
|
a_sync/a_sync/_helpers.pyi,sha256=t2iBYRsG3qCfhzEfO6aG4KLQv_LWe8yjYDZ4RppnOak,319
|
|
50
50
|
a_sync/a_sync/method.pyx,sha256=gTyPQn1znZCsIHnqeXC2nPRoRNBrnpHTx7fAQwW9nEk,35131
|
|
51
51
|
a_sync/a_sync/flags.pyi,sha256=PPAqrtJOvabVudb_yT32yZ95PP15uzzuXD2NirkWqTw,2229
|
|
52
52
|
a_sync/a_sync/function.pyx,sha256=yV4I_xTWZ02Z7gm_gtsHUGCEKNIIWlsEqh3AFddbaHM,45603
|
|
53
53
|
a_sync/a_sync/base.c,sha256=H5myWP3tyqTOkIR3692XiDibekzJlCJ0XA-QeL8u7ZI,562178
|
|
54
54
|
a_sync/a_sync/__init__.py,sha256=P8AO0TBmYPW5BYVk0TohOwLq8jurpRKfXnaPO-qDMJw,2200
|
|
55
|
-
a_sync/a_sync/property.cpython-38-darwin.so,sha256=
|
|
55
|
+
a_sync/a_sync/property.cpython-38-darwin.so,sha256=9yIXwrJ7Aknk619D-SjRr9fybEo8UahQYGZobUcGjuM,301888
|
|
56
56
|
a_sync/a_sync/function.c,sha256=12-cYu-_CbCPan-pW5N_4R-AeiUEkDOgyAgtjRZTp70,1692632
|
|
57
|
-
a_sync/a_sync/function.cpython-38-darwin.so,sha256=
|
|
57
|
+
a_sync/a_sync/function.cpython-38-darwin.so,sha256=mTcAt9Sd_0JgRkdzAo1uOvDQtWZnby3xuCvkGynSwwk,384400
|
|
58
58
|
a_sync/a_sync/_descriptor.pyi,sha256=N77KA4DQbXUXKeAf-vTpAXc7E4Bk1d-Khtr7vjzwRwI,1343
|
|
59
|
-
a_sync/a_sync/_descriptor.cpython-38-darwin.so,sha256=
|
|
59
|
+
a_sync/a_sync/_descriptor.cpython-38-darwin.so,sha256=td4AgsLaHODWixZJ-D8DT7GsgOqRp2txj6l2jIqltSw,208784
|
|
60
60
|
a_sync/a_sync/_helpers.c,sha256=H3xMbljWjqkTByQmwyFkdJGoMXH_EeEQfHPtn9qeAng,550837
|
|
61
61
|
a_sync/a_sync/abstract.pyi,sha256=IGEh74mnvZECWpSr0bh-ZQeFc-6Q4cu9EefhEaDLp2c,5071
|
|
62
62
|
a_sync/a_sync/base.pyx,sha256=73vU-pr2XClsKLcGlQbhAhjLFHMoBQrb6UH-YuCBhxU,10603
|
|
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
|
-
a_sync/a_sync/property.pyx,sha256=
|
|
66
|
+
a_sync/a_sync/property.pyx,sha256=qEFhqtYQhg2rsoDwXdfyVmtCfKvQa--OUkF89plRSek,27599
|
|
67
67
|
a_sync/a_sync/singleton.py,sha256=WRJ9FEqeFB8T59NSOiLLcm-QmMCI0H7nwEpvDIUp9IQ,2492
|
|
68
|
-
a_sync/a_sync/base.cpython-38-darwin.so,sha256=
|
|
69
|
-
a_sync/a_sync/_helpers.cpython-38-darwin.so,sha256=
|
|
70
|
-
a_sync/a_sync/_kwargs.cpython-38-darwin.so,sha256=
|
|
68
|
+
a_sync/a_sync/base.cpython-38-darwin.so,sha256=AfFK6wSn7uLIha4Qz03bLJ48rOjxlDRvv9Zap20FXzU,141736
|
|
69
|
+
a_sync/a_sync/_helpers.cpython-38-darwin.so,sha256=AsMV_ThkZ7Lo0YooheICV1bPBdxlxSCDKHT40DZP6_0,146432
|
|
70
|
+
a_sync/a_sync/_kwargs.cpython-38-darwin.so,sha256=Yr0wih2_WPWqR97y89WzvEbQ-KMU5vw5tXmDpK_qtr8,106048
|
|
71
71
|
a_sync/a_sync/abstract.c,sha256=my8pajUN_xUqEIJitvZ7ZN5Mxy8e4lJv-iXgV308oQE,461336
|
|
72
72
|
a_sync/a_sync/flags.c,sha256=pnoCgI2Cochd4fMayKEKI82lw8f83fwhhUkNajLvxJk,175737
|
|
73
73
|
a_sync/a_sync/method.c,sha256=t3BPxuFhK8z8ZODABEx1L_whq6JUTwPwoJkY-s7yjw4,1261576
|
|
@@ -84,13 +84,13 @@ a_sync/a_sync/modifiers/__init__.pxd,sha256=17tPpMY2ByVbMGIpI5kiP3WX8V9IM5ZHJp0Y
|
|
|
84
84
|
a_sync/a_sync/modifiers/semaphores.py,sha256=V1_jjxwuXq55y6Lv4yP4mymVj5AOCMIZXSkaZSKwEdw,6916
|
|
85
85
|
a_sync/a_sync/modifiers/manager.pxd,sha256=s7zw1kllYYGpe5uFETRIUFsgbVdtFM8jGh4RxZgm25M,183
|
|
86
86
|
a_sync/a_sync/modifiers/__init__.py,sha256=JXyupO5h2hICMd-ha642ttCEFib_gAA6v-Ll6cyHNCA,4159
|
|
87
|
-
a_sync/a_sync/modifiers/manager.cpython-38-darwin.so,sha256=
|
|
88
|
-
a_sync/a_sync/modifiers/manager.pyx,sha256=
|
|
89
|
-
a_sync/a_sync/modifiers/manager.c,sha256=
|
|
87
|
+
a_sync/a_sync/modifiers/manager.cpython-38-darwin.so,sha256=2BhzUrdUpXUTi3OGutf9BIMaIuHaA1sIokxw2GroLTM,169312
|
|
88
|
+
a_sync/a_sync/modifiers/manager.pyx,sha256=PcyGpRnWgTZlPRukzPotwtUn43SYcbiR2TXaKSgEioI,9396
|
|
89
|
+
a_sync/a_sync/modifiers/manager.c,sha256=GiQBNW8VlS3IOx1EyS7HQ4njW7OGi90J83SPz7eYIbk,626521
|
|
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
|
|
93
|
-
a_sync/utils/repr.cpython-38-darwin.so,sha256
|
|
93
|
+
a_sync/utils/repr.cpython-38-darwin.so,sha256=-ggUn3Y9-1W7YoPXqeKIVBOEJ2xDpr4nyqbJAoQP9Vk,145720
|
|
94
94
|
a_sync/utils/repr.pyx,sha256=xdsVdK75Zi5pAoh-8qRG0q7F0ySAq1zDkksZw37FoL4,2632
|
|
95
95
|
a_sync/utils/__init__.py,sha256=Y6R-IcD5ROzp2Zs3ZMv3bapkcfOpJHlBeD838bntd-Q,3213
|
|
96
96
|
a_sync/utils/iterators.py,sha256=GkT2fgMVKDorT-BKPPOPOIDj5Zt4yl-5vAmpn4H5wGA,11055
|
|
@@ -104,23 +104,23 @@ a_sync/primitives/_debug.pxd,sha256=EaMH5xgQHs7hwnWFUocHEl9pAmUZs9J1aRVtb62zvw0,
|
|
|
104
104
|
a_sync/primitives/_debug.c,sha256=i2c5IcDvCJXiiPUw7BOOrE37_0TxU7TAA4MqbGtJwEc,600616
|
|
105
105
|
a_sync/primitives/__init__.py,sha256=U5r-Do_TKR1FbfLEHuckiYs87QkN4HsYNZfunRhX52c,1642
|
|
106
106
|
a_sync/primitives/_loggable.pxd,sha256=1YRkqc20KcPoTukbWXn7qpbZ8zA16X1h_84vadCqSPc,133
|
|
107
|
-
a_sync/primitives/_loggable.cpython-38-darwin.so,sha256=
|
|
107
|
+
a_sync/primitives/_loggable.cpython-38-darwin.so,sha256=85S28FJ2_mXSk_tcyNSvKvZl07yULD5M0Yr-IIMrEwY,120656
|
|
108
108
|
a_sync/primitives/_loggable.pyx,sha256=jxKSBCs4VlXuYC7LsxbUJw0FJInjBKOkEdBSoqCndxY,3003
|
|
109
|
-
a_sync/primitives/_debug.cpython-38-darwin.so,sha256=
|
|
109
|
+
a_sync/primitives/_debug.cpython-38-darwin.so,sha256=o82_RxNKkcJmFMEcMfpJ5xfVCP-de4vcLLed8nUvE5w,149496
|
|
110
110
|
a_sync/primitives/_debug.pyx,sha256=NH2hr-yQLz1pKnmleIpIeDVTy75KSguQpUiuoza_ahc,7849
|
|
111
111
|
a_sync/primitives/_loggable.c,sha256=Us1P0zNcyclaIoWNOwRQp92ejJTqgX0aHyIdBBVb2DI,419940
|
|
112
|
-
a_sync/primitives/locks/semaphore.cpython-38-darwin.so,sha256=
|
|
113
|
-
a_sync/primitives/locks/prio_semaphore.cpython-38-darwin.so,sha256=
|
|
112
|
+
a_sync/primitives/locks/semaphore.cpython-38-darwin.so,sha256=_TAvpfzjOl7d_EfSlKSWLPNytBXjm7kZRVUlsPwZPy4,257344
|
|
113
|
+
a_sync/primitives/locks/prio_semaphore.cpython-38-darwin.so,sha256=zDWuerXmj7LTTn9toGMzRrlsowS-meeU-qoBygOfGOA,254816
|
|
114
114
|
a_sync/primitives/locks/prio_semaphore.pyi,sha256=w3xGj3-kdFEjw4k8vzt4TiWsG8j5KC6erXBNNrEhaL0,7644
|
|
115
115
|
a_sync/primitives/locks/event.pyx,sha256=oLbALE5DMKtYDn1XEqvMB_vffUoM3tjn1qXbkgGhY5k,5953
|
|
116
116
|
a_sync/primitives/locks/semaphore.pyx,sha256=EZcbrVvgc4XrLqJeP0K62L1_OxmSxYfazA_T6_t65FQ,14836
|
|
117
117
|
a_sync/primitives/locks/prio_semaphore.c,sha256=WjkhyZ0o1fX4IJ83lJgVfifcpF9nPvBYF8pRoaQx9oE,1108766
|
|
118
118
|
a_sync/primitives/locks/__init__.pxd,sha256=DuPhDRldnCwqBUxgo9V5K0GmA8BWLf5fC266ujDQ9pc,302
|
|
119
|
-
a_sync/primitives/locks/counter.cpython-38-darwin.so,sha256=
|
|
119
|
+
a_sync/primitives/locks/counter.cpython-38-darwin.so,sha256=wo7hcGbLtHaOGoQJjnSU82A5z3gJ_zoJ_3pTgfZN7og,170464
|
|
120
120
|
a_sync/primitives/locks/prio_semaphore.pxd,sha256=HaZNcPioDb_USZJseyI0OHEBYo8X1COM17WTuc5GQ5E,889
|
|
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
|
-
a_sync/primitives/locks/event.cpython-38-darwin.so,sha256=
|
|
123
|
+
a_sync/primitives/locks/event.cpython-38-darwin.so,sha256=0LJu3hBNJf0wBBHQ-_jti11MjzDFKtBi6AzC3Eqd5EQ,167384
|
|
124
124
|
a_sync/primitives/locks/counter.pxd,sha256=_HoPXPMTRY3Gw3GPUB2jAx7lUpjJ4QyO75YiR_BehAQ,409
|
|
125
125
|
a_sync/primitives/locks/semaphore.c,sha256=WHja99K-tsUeqhjx2AIEGEHxTyeGnDTER3__dnRxI9Q,1135760
|
|
126
126
|
a_sync/primitives/locks/event.c,sha256=Ps1XlK9raKRKsEl0UbuL3ae6TwYwG3sDZ3fsSd4qlXw,656012
|
|
@@ -135,7 +135,7 @@ 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
137
|
a_sync/async_property/proxy.pyi,sha256=4GCwklkt5bjp2ADP6SQtVOkL6E9xiyBAf_twX5Cvatg,4218
|
|
138
|
-
a_sync/async_property/cached.cpython-38-darwin.so,sha256=
|
|
138
|
+
a_sync/async_property/cached.cpython-38-darwin.so,sha256=p_aFk4ZuhYAIO3c0RaanjjVf5zALM6KrAHQWuuxyOwE,205720
|
|
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
|
|
141
141
|
a_sync/async_property/__init__.pxd,sha256=EGawuQLZIz7ZZLOFmaOQAFUVvabadR0aPYBW7U4TaCo,74
|
|
@@ -143,7 +143,7 @@ a_sync/async_property/cached.pxd,sha256=u4XHDFvvaRv7y65VyDI8gVmYzlGD-kFlN1H2lc48
|
|
|
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
|
-
a_sync/async_property/proxy.cpython-38-darwin.so,sha256=
|
|
146
|
+
a_sync/async_property/proxy.cpython-38-darwin.so,sha256=Ki8imh4YOIYgeuPffiiixtu3S-BnvJqikwsmk5yhwpY,350056
|
|
147
147
|
a_sync/async_property/cached.pyx,sha256=4UoHk6yACkpwKjD_DBHLMb2JIAAhKVmhDGU7WZYg-Cc,6314
|
|
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
|
|
@@ -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/sleep.cpython-38-darwin.so,sha256=
|
|
162
|
+
a_sync/asyncio/sleep.cpython-38-darwin.so,sha256=_RHpvHzDHa1v8xAt2cC-skJYw7ViJ3i-JnzlBatcpC0,84456
|
|
163
163
|
a_sync/asyncio/create_task.pyi,sha256=5H2z4k_2dGG2QTGjGEgP1N6ITuClYYWzkPbzaeQwKks,1864
|
|
164
164
|
a_sync/asyncio/igather.pyx,sha256=TctS1kLzaYztLrZJmLwIOOvJTthKiEwsy-AaW1ObnKg,6325
|
|
165
165
|
a_sync/asyncio/gather.pyx,sha256=4ALHvhJPQsNtw7b9dsbhwmKpXEbiRzOCjMqagi3sTXs,8566
|
|
166
|
-
a_sync/asyncio/create_task.cpython-38-darwin.so,sha256=
|
|
166
|
+
a_sync/asyncio/create_task.cpython-38-darwin.so,sha256=xkmyklsFCyNNI-fofjGPcceV3PGmRXbGWBABZVdZjrA,165072
|
|
167
167
|
a_sync/asyncio/gather.c,sha256=MLhPvLSGGCpxgMNtiA8Xcx3nniDOLzMSVYnFbSFWukE,637555
|
|
168
168
|
a_sync/asyncio/create_task.pxd,sha256=x-sZVX-26NoqxYb5mH33uh2Mg-3AqqdYGXx4Ai7xZwU,143
|
|
169
|
-
a_sync/asyncio/igather.cpython-38-darwin.so,sha256=
|
|
170
|
-
a_sync/asyncio/gather.cpython-38-darwin.so,sha256
|
|
169
|
+
a_sync/asyncio/igather.cpython-38-darwin.so,sha256=BNP4VKPLpXsMwibgB4pPQ8WcwqpFeMlKnoMpZZfhWK0,120864
|
|
170
|
+
a_sync/asyncio/gather.cpython-38-darwin.so,sha256=-n084DQJXNt_hBsG-6WOj-88RoZK2SSCIrJemtuaD90,166936
|
|
171
171
|
a_sync/asyncio/as_completed.pyx,sha256=ar0gJ3iN6-4Jw8xy6i7KVJ54RnAGt1JWE85Wh6kPF48,9052
|
|
172
|
-
a_sync/asyncio/as_completed.cpython-38-darwin.so,sha256=
|
|
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.
|
|
172
|
+
a_sync/asyncio/as_completed.cpython-38-darwin.so,sha256=UE3HSJOqsaJf7yBAFrOR4Xdn0o-zDMsZl_wnKpK_ry0,187328
|
|
173
|
+
ez_a_sync-0.32.11.dist-info/RECORD,,
|
|
174
|
+
ez_a_sync-0.32.11.dist-info/WHEEL,sha256=9FabR3Kab7Nb3lO5nBQWtZc544XJ0hYCmiQC2RH2bHM,107
|
|
175
|
+
ez_a_sync-0.32.11.dist-info/top_level.txt,sha256=ew2xVyFeZE_a5XMEL64h7-vJIbaBQieaFcvBAWUpU_s,7
|
|
176
|
+
ez_a_sync-0.32.11.dist-info/LICENSE.txt,sha256=1on6-17OUMlja6vSPTcmlmeT_DwujCZJijYxaplBvZk,1075
|
|
177
|
+
ez_a_sync-0.32.11.dist-info/METADATA,sha256=ytwsBMaiylMciXPk79OQu0a1hGwm4AXyWoO9SZ0w5qk,12961
|
|
File without changes
|
|
File without changes
|
|
File without changes
|