ez-a-sync 0.32.25__cp311-cp311-musllinux_1_2_i686.whl → 0.32.26__cp311-cp311-musllinux_1_2_i686.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 +9024 -8813
- a_sync/_smart.cpython-311-i386-linux-musl.so +0 -0
- a_sync/a_sync/_descriptor.c +7775 -7014
- a_sync/a_sync/_descriptor.cpython-311-i386-linux-musl.so +0 -0
- a_sync/a_sync/_flags.c +1803 -1528
- a_sync/a_sync/_flags.cpython-311-i386-linux-musl.so +0 -0
- a_sync/a_sync/_helpers.c +4705 -4177
- a_sync/a_sync/_helpers.cpython-311-i386-linux-musl.so +0 -0
- a_sync/a_sync/_kwargs.c +5005 -3789
- a_sync/a_sync/_kwargs.cpython-311-i386-linux-musl.so +0 -0
- a_sync/a_sync/abstract.c +5018 -4139
- a_sync/a_sync/abstract.cpython-311-i386-linux-musl.so +0 -0
- a_sync/a_sync/base.c +5927 -4970
- a_sync/a_sync/base.cpython-311-i386-linux-musl.so +0 -0
- a_sync/a_sync/flags.c +2301 -1406
- a_sync/a_sync/flags.cpython-311-i386-linux-musl.so +0 -0
- a_sync/a_sync/function.c +14439 -14477
- a_sync/a_sync/function.cpython-311-i386-linux-musl.so +0 -0
- a_sync/a_sync/method.c +10974 -11581
- a_sync/a_sync/method.cpython-311-i386-linux-musl.so +0 -0
- a_sync/a_sync/modifiers/manager.c +6686 -5361
- a_sync/a_sync/modifiers/manager.cpython-311-i386-linux-musl.so +0 -0
- a_sync/a_sync/property.c +12790 -13674
- a_sync/a_sync/property.cpython-311-i386-linux-musl.so +0 -0
- a_sync/a_sync/property.pyx +2 -3
- a_sync/async_property/cached.c +7485 -7765
- a_sync/async_property/cached.cpython-311-i386-linux-musl.so +0 -0
- a_sync/async_property/proxy.c +12574 -14249
- a_sync/async_property/proxy.cpython-311-i386-linux-musl.so +0 -0
- a_sync/asyncio/as_completed.c +7104 -6780
- a_sync/asyncio/as_completed.cpython-311-i386-linux-musl.so +0 -0
- a_sync/asyncio/create_task.c +6113 -5215
- a_sync/asyncio/create_task.cpython-311-i386-linux-musl.so +0 -0
- a_sync/asyncio/gather.c +6339 -5704
- a_sync/asyncio/gather.cpython-311-i386-linux-musl.so +0 -0
- a_sync/asyncio/igather.c +5143 -4562
- a_sync/asyncio/igather.cpython-311-i386-linux-musl.so +0 -0
- a_sync/asyncio/sleep.c +3653 -3088
- a_sync/asyncio/sleep.cpython-311-i386-linux-musl.so +0 -0
- a_sync/debugging.c +6015 -5878
- a_sync/debugging.cpython-311-i386-linux-musl.so +0 -0
- a_sync/exceptions.c +5529 -5498
- a_sync/exceptions.cpython-311-i386-linux-musl.so +0 -0
- a_sync/functools.c +5104 -4052
- a_sync/functools.cpython-311-i386-linux-musl.so +0 -0
- a_sync/iter.c +15301 -15508
- a_sync/iter.cpython-311-i386-linux-musl.so +0 -0
- a_sync/primitives/_debug.c +5710 -4819
- a_sync/primitives/_debug.cpython-311-i386-linux-musl.so +0 -0
- a_sync/primitives/_loggable.c +4400 -3445
- a_sync/primitives/_loggable.cpython-311-i386-linux-musl.so +0 -0
- a_sync/primitives/locks/counter.c +6455 -6083
- a_sync/primitives/locks/counter.cpython-311-i386-linux-musl.so +0 -0
- a_sync/primitives/locks/event.c +6449 -5579
- a_sync/primitives/locks/event.cpython-311-i386-linux-musl.so +0 -0
- a_sync/primitives/locks/prio_semaphore.c +9080 -8534
- a_sync/primitives/locks/prio_semaphore.cpython-311-i386-linux-musl.so +0 -0
- a_sync/primitives/locks/semaphore.c +8629 -7948
- a_sync/primitives/locks/semaphore.cpython-311-i386-linux-musl.so +0 -0
- a_sync/utils/repr.c +5914 -4759
- a_sync/utils/repr.cpython-311-i386-linux-musl.so +0 -0
- {ez_a_sync-0.32.25.dist-info → ez_a_sync-0.32.26.dist-info}/METADATA +2 -2
- {ez_a_sync-0.32.25.dist-info → ez_a_sync-0.32.26.dist-info}/RECORD +66 -66
- {ez_a_sync-0.32.25.dist-info → ez_a_sync-0.32.26.dist-info}/WHEEL +0 -0
- {ez_a_sync-0.32.25.dist-info → ez_a_sync-0.32.26.dist-info}/licenses/LICENSE.txt +0 -0
- {ez_a_sync-0.32.25.dist-info → ez_a_sync-0.32.26.dist-info}/top_level.txt +0 -0
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ez_a_sync
|
|
3
|
-
Version: 0.32.
|
|
3
|
+
Version: 0.32.26
|
|
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
|
|
@@ -21,7 +21,7 @@ Description-Content-Type: text/markdown
|
|
|
21
21
|
License-File: LICENSE.txt
|
|
22
22
|
Requires-Dist: aiolimiter>=1
|
|
23
23
|
Requires-Dist: async_lru_threadsafe==2.0.4
|
|
24
|
-
Requires-Dist: async_property==0.2.
|
|
24
|
+
Requires-Dist: async_property==0.2.2
|
|
25
25
|
Requires-Dist: typed_envs>=0.0.5
|
|
26
26
|
Requires-Dist: typing_extensions>=4.1.0
|
|
27
27
|
Dynamic: author
|
|
@@ -1,89 +1,89 @@
|
|
|
1
1
|
a_sync/ENVIRONMENT_VARIABLES.py,sha256=YgIB8mQRqQBLbD3DdwMjx4ylqO8pK3GUvSNCerWJzx8,1280
|
|
2
2
|
a_sync/__init__.pxd,sha256=ol4jqkvuweaaU8GQU_Mq9rak8IIsagYTdhYhbKK74ac,81
|
|
3
3
|
a_sync/__init__.py,sha256=lgwXsFYALBp0ORHRLKlpfPE79GIqbhR_MP8JbZStBGc,5750
|
|
4
|
-
a_sync/_smart.c,sha256=
|
|
5
|
-
a_sync/_smart.cpython-311-i386-linux-musl.so,sha256=
|
|
4
|
+
a_sync/_smart.c,sha256=LZ9Td9EPgthNzS8f3wts_0R4CsoWsyMCPm_-UC4S2QU,960523
|
|
5
|
+
a_sync/_smart.cpython-311-i386-linux-musl.so,sha256=U6ysV5fARLLnqElBIciw0a7asBWCH9dGwLRR70W3Zvc,1010200
|
|
6
6
|
a_sync/_smart.pxd,sha256=3FlPqSvAtmGXIDFzfm7wpkvL6xt8z8w-vwow4Lura2g,76
|
|
7
7
|
a_sync/_smart.pyi,sha256=mUQwUiiSsMsbtJTKdXm076ua5B2A9USaKgjZq1Se_ZQ,5390
|
|
8
8
|
a_sync/_smart.pyx,sha256=88-mSxJLUHoF_4d7re18QUy6iwV7Y7mcPjNp6MYaviU,19828
|
|
9
9
|
a_sync/_typing.py,sha256=x24VIVjxz8sUWPmQR072pHAQxJO769Nn02f3eakFpe8,6850
|
|
10
10
|
a_sync/aliases.py,sha256=TbLyuLeFfJEmcC5-NP6h4DQ9QXlQjGny2NUP_x1tflw,212
|
|
11
|
-
a_sync/debugging.c,sha256=
|
|
12
|
-
a_sync/debugging.cpython-311-i386-linux-musl.so,sha256=
|
|
11
|
+
a_sync/debugging.c,sha256=ZqNJb4IafZ_cXlffhXIfGWVPBVpqrj1o14d0PV0ZZ6g,618202
|
|
12
|
+
a_sync/debugging.cpython-311-i386-linux-musl.so,sha256=oIN_qRV3IVcnVDkViVACPx5v92YkF4zxZnbzE1u_Epk,635404
|
|
13
13
|
a_sync/debugging.pyi,sha256=AELgYmG2aLEBrkSHL7WKUrJGzyk-XXDq_abS8W6ccck,2311
|
|
14
14
|
a_sync/debugging.pyx,sha256=Z29Lek1NyUXVFHjfk9O6XWxPNk1uRFyY6tK6fTfgxGM,3045
|
|
15
|
-
a_sync/exceptions.c,sha256=
|
|
16
|
-
a_sync/exceptions.cpython-311-i386-linux-musl.so,sha256=
|
|
15
|
+
a_sync/exceptions.c,sha256=wwlf7SW695_5n6XNHa_BnKBRCm7c_e0zM4vZOVcrWdw,579437
|
|
16
|
+
a_sync/exceptions.cpython-311-i386-linux-musl.so,sha256=Wkm9XBMaCvhLXMm51jyR5eqxsxS3KcYYLxQ_pCDFyvs,609268
|
|
17
17
|
a_sync/exceptions.pyi,sha256=NnBEKUBzBCl0kLj75ukwyQeWXjwPSkDg-NxKsXh-Ans,10834
|
|
18
18
|
a_sync/exceptions.pyx,sha256=XxT1cOZ3qehVuQd00NbiY72YMLeFLzi6aRBvisQF6TA,13274
|
|
19
19
|
a_sync/executor.py,sha256=bacluNlegqlioPxlcFOTaGiH2ylXJYkfBSsUMnQqOWQ,21401
|
|
20
|
-
a_sync/functools.c,sha256=
|
|
21
|
-
a_sync/functools.cpython-311-i386-linux-musl.so,sha256=
|
|
20
|
+
a_sync/functools.c,sha256=Ow3QWgpdyBJ_dkMAv30YIUK64OurIlmBQHpohFSKoWM,508216
|
|
21
|
+
a_sync/functools.cpython-311-i386-linux-musl.so,sha256=1WF7UoQDFdxtXqxnsDHqxh2cihbZU6k5894gIh5WO2I,466568
|
|
22
22
|
a_sync/functools.pxd,sha256=hhygzVpa5tXnDWR1pi_WLkOBd_1mC60K3279wYFEfA8,187
|
|
23
23
|
a_sync/functools.pyi,sha256=HGM208HKg5FOUbu9CbfnIOx3sdQB1OwO1t-0tZKd-T4,1404
|
|
24
24
|
a_sync/functools.pyx,sha256=F-Vp5JrhEt4jaFQDx48FadI7NGLlPfoIPWRWHTQob0Q,4837
|
|
25
25
|
a_sync/future.py,sha256=CK3t7BE1AfuFhWLFw50rFaCox0IRYW2x0HqVpOJC6o8,48675
|
|
26
|
-
a_sync/iter.c,sha256=
|
|
27
|
-
a_sync/iter.cpython-311-i386-linux-musl.so,sha256=
|
|
26
|
+
a_sync/iter.c,sha256=oLKbT2u7IspzZNGrcnwvRE4PMIPrO_mPodCjvLrp4BM,1689859
|
|
27
|
+
a_sync/iter.cpython-311-i386-linux-musl.so,sha256=q-_otJE-gXKlWzmKSw2aCOWrMlrDaLIEh1baVBwDqb4,1985300
|
|
28
28
|
a_sync/iter.pxd,sha256=VQKDAzm1M4snbrL9vwhU2zl04H4LeJrWtqksw6yGWOc,427
|
|
29
29
|
a_sync/iter.pyi,sha256=785C3RAcRT69ngv3LfEE56Sf8hyLqapxS94uqfz1na8,15412
|
|
30
30
|
a_sync/iter.pyx,sha256=TKzdMQkI74oKdgW-Us1WSgE5_KdS_7dOUykAmTHiXgU,37486
|
|
31
31
|
a_sync/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
32
32
|
a_sync/task.py,sha256=lHeGEPyEoUPNCTMGBGxvJxTZSu6KOqN5VC0rIf_slIY,35049
|
|
33
33
|
a_sync/a_sync/__init__.py,sha256=P8AO0TBmYPW5BYVk0TohOwLq8jurpRKfXnaPO-qDMJw,2200
|
|
34
|
-
a_sync/a_sync/_descriptor.c,sha256=
|
|
35
|
-
a_sync/a_sync/_descriptor.cpython-311-i386-linux-musl.so,sha256=
|
|
34
|
+
a_sync/a_sync/_descriptor.c,sha256=GFL7SOj8RFDGXPDIVpA3SMccXA0KE_3xcsZssIhvWJs,902356
|
|
35
|
+
a_sync/a_sync/_descriptor.cpython-311-i386-linux-musl.so,sha256=oN3XJIaPMczCgER8BHvD7Dai_pkC7sJLoPK3u5p4cM0,952084
|
|
36
36
|
a_sync/a_sync/_descriptor.pyi,sha256=N77KA4DQbXUXKeAf-vTpAXc7E4Bk1d-Khtr7vjzwRwI,1343
|
|
37
37
|
a_sync/a_sync/_descriptor.pyx,sha256=jlQ8VgBmUB7fMUBsb3cIqyREmspkTgLQv5jZNqowkwg,13602
|
|
38
|
-
a_sync/a_sync/_flags.c,sha256=
|
|
39
|
-
a_sync/a_sync/_flags.cpython-311-i386-linux-musl.so,sha256=
|
|
38
|
+
a_sync/a_sync/_flags.c,sha256=NGI420eSGIxIuSwYF35z0JqDSlBdaGXV2-EaIfKjlyc,234371
|
|
39
|
+
a_sync/a_sync/_flags.cpython-311-i386-linux-musl.so,sha256=EdkrO2YQPTzW_G3FGzDfLWBgy2n3AcQJYZpH1r_on58,137552
|
|
40
40
|
a_sync/a_sync/_flags.pxd,sha256=w8CBx5wDoCBRHFmeQOuVwWefDC3LP3zIWGaao_-y_uY,188
|
|
41
41
|
a_sync/a_sync/_flags.pyx,sha256=suOkvo37BZ9RIOdCpAdsXgk_98IOkn6jr1Ss5yunvdU,2806
|
|
42
|
-
a_sync/a_sync/_helpers.c,sha256=
|
|
43
|
-
a_sync/a_sync/_helpers.cpython-311-i386-linux-musl.so,sha256=
|
|
42
|
+
a_sync/a_sync/_helpers.c,sha256=PLpKQdk-JT4KV8infBtSC8dJVjOuBXxISj7vF2d0wD8,593540
|
|
43
|
+
a_sync/a_sync/_helpers.cpython-311-i386-linux-musl.so,sha256=Mh9vYX2X5dLyY7_nhbz59tvuXWJSpPhYVSA4yoqo17o,584240
|
|
44
44
|
a_sync/a_sync/_helpers.pxd,sha256=VG28VRW-jlTZJ-0H-W8Y8u5gw8zUVIbsb3nW-REI_Z4,118
|
|
45
45
|
a_sync/a_sync/_helpers.pyi,sha256=t2iBYRsG3qCfhzEfO6aG4KLQv_LWe8yjYDZ4RppnOak,319
|
|
46
46
|
a_sync/a_sync/_helpers.pyx,sha256=rvsCXR7tvddUIymUQCSi4eGzNCstYi5zGAdLCTPaIFQ,5409
|
|
47
|
-
a_sync/a_sync/_kwargs.c,sha256=
|
|
48
|
-
a_sync/a_sync/_kwargs.cpython-311-i386-linux-musl.so,sha256=
|
|
47
|
+
a_sync/a_sync/_kwargs.c,sha256=Rvc0G2Opr8DaeWY8Xn5JjZnAAAyZa64K8EREjWlsbYo,468409
|
|
48
|
+
a_sync/a_sync/_kwargs.cpython-311-i386-linux-musl.so,sha256=Mg0dL6GKhegLUIHcCEBTPtrc82LYEe5lcSTpNg8kbRI,344816
|
|
49
49
|
a_sync/a_sync/_kwargs.pxd,sha256=RdEVKGXeBvq5_O4WkRXtjKdi8FV6oNPGhtJ-epUnr1M,92
|
|
50
50
|
a_sync/a_sync/_kwargs.pyx,sha256=0hHXMlOpJmtNJ7yApnwEr7U_sub5yrOuZbSn_oBMxwk,1975
|
|
51
51
|
a_sync/a_sync/_meta.py,sha256=iET1qFtqdMZmMRc_-e1rWL2VgYJ7ymsZ6_JdWrrcDS0,9429
|
|
52
|
-
a_sync/a_sync/abstract.c,sha256=
|
|
53
|
-
a_sync/a_sync/abstract.cpython-311-i386-linux-musl.so,sha256=
|
|
52
|
+
a_sync/a_sync/abstract.c,sha256=HEUkQU8fGq_PHbC3ZJLch40hhXY5eDsRS5c5G8Nb2Io,511309
|
|
53
|
+
a_sync/a_sync/abstract.cpython-311-i386-linux-musl.so,sha256=TK8mloJ0Zh452c-5j6p1gW56jbnKHw1f-opOF154XmE,473364
|
|
54
54
|
a_sync/a_sync/abstract.pyi,sha256=IGEh74mnvZECWpSr0bh-ZQeFc-6Q4cu9EefhEaDLp2c,5071
|
|
55
55
|
a_sync/a_sync/abstract.pyx,sha256=OUp1CJ3NnBInC5agJ-6Ob_n6HfjkHY-f_6gPgZxaGx8,7864
|
|
56
|
-
a_sync/a_sync/base.c,sha256=
|
|
57
|
-
a_sync/a_sync/base.cpython-311-i386-linux-musl.so,sha256=
|
|
56
|
+
a_sync/a_sync/base.c,sha256=pXpo4r7bltCQsgt6eHM-IrDMPLoPR66adjmY2Xyytso,623873
|
|
57
|
+
a_sync/a_sync/base.cpython-311-i386-linux-musl.so,sha256=9h7WcgRr-gn6WL1iPt_Uw6x8B5i6r9mEgZuak9obCiw,639656
|
|
58
58
|
a_sync/a_sync/base.pyi,sha256=t7AsaZzf74djHjkAA7Dnzf12sG1ppoxpwm0Iyn1GM3w,2326
|
|
59
59
|
a_sync/a_sync/base.pyx,sha256=73vU-pr2XClsKLcGlQbhAhjLFHMoBQrb6UH-YuCBhxU,10603
|
|
60
60
|
a_sync/a_sync/config.py,sha256=siXP4CFLQ_vswuG5K-G6cOSjQ6xKc1gN7-XNHFN2tFU,6221
|
|
61
61
|
a_sync/a_sync/decorator.py,sha256=mCSp2KxOsPObANAwR6VK4UzhuelxAOwPDGQ8-jxe8dk,19750
|
|
62
|
-
a_sync/a_sync/flags.c,sha256=
|
|
63
|
-
a_sync/a_sync/flags.cpython-311-i386-linux-musl.so,sha256=
|
|
62
|
+
a_sync/a_sync/flags.c,sha256=pCdWf7F1lX_vjV4CCmkiL9zKxW8IAwnGr3nSnZH-EWk,219165
|
|
63
|
+
a_sync/a_sync/flags.cpython-311-i386-linux-musl.so,sha256=WHv4KwgfMh4PY1CvJeM_VznzXUYRF2_XKjg8uETC_ns,58704
|
|
64
64
|
a_sync/a_sync/flags.pxd,sha256=Jxe9hvWn-mPfGXHXLEvRPM2i44c4y2D4iq4ZqZZst80,2238
|
|
65
65
|
a_sync/a_sync/flags.pyi,sha256=PPAqrtJOvabVudb_yT32yZ95PP15uzzuXD2NirkWqTw,2229
|
|
66
66
|
a_sync/a_sync/flags.pyx,sha256=PU_DAZzoXhn-Z-okbTu0p6stnwnKsSEn781TryRRs0E,2305
|
|
67
|
-
a_sync/a_sync/function.c,sha256=
|
|
68
|
-
a_sync/a_sync/function.cpython-311-i386-linux-musl.so,sha256=
|
|
67
|
+
a_sync/a_sync/function.c,sha256=V7YGTDUETMmAc-e-_RfolQG2UHaChPNRwHVo7sEmQwo,1808183
|
|
68
|
+
a_sync/a_sync/function.cpython-311-i386-linux-musl.so,sha256=T9ThrFgrgdhRQ_yHe9vkUBqlvfhNwxYrNPsu45s2L5o,2080408
|
|
69
69
|
a_sync/a_sync/function.pxd,sha256=QOGVstj2s4oQy18QwjCy--eu4pOlheVwWg3oiT2KDno,830
|
|
70
70
|
a_sync/a_sync/function.pyi,sha256=Ui6VrM_i7Vw7PPye3X4hOQ3Za7ikD0qbI26HIs7wqow,17990
|
|
71
71
|
a_sync/a_sync/function.pyx,sha256=9btAdzY428QkPd7ggQpomhaD7h8BCdzjTvhT4ayw7-g,46400
|
|
72
|
-
a_sync/a_sync/method.c,sha256=
|
|
73
|
-
a_sync/a_sync/method.cpython-311-i386-linux-musl.so,sha256=
|
|
72
|
+
a_sync/a_sync/method.c,sha256=G9C4Nd58gMxTaYsj_3sBIqWUmqvv3WOue2XizF01UAs,1433525
|
|
73
|
+
a_sync/a_sync/method.cpython-311-i386-linux-musl.so,sha256=Mt63otw0iYyXweDOA5g3z3lPxLbt8Msi4__3tYMRcz8,1753232
|
|
74
74
|
a_sync/a_sync/method.pxd,sha256=TMlVXxWOGc6r-4duaRSi_kEPe24Be1mpeISZNqktqXg,472
|
|
75
75
|
a_sync/a_sync/method.pyi,sha256=DpzdpuYSi7wiZkkX9xB0pg1oFcCYxJbVrWj3J_ISo3M,17815
|
|
76
76
|
a_sync/a_sync/method.pyx,sha256=2asS_Ej5q6-BZ9T8JYqXjLOaQ9-n2SBcmXaAvSoJgps,36146
|
|
77
|
-
a_sync/a_sync/property.c,sha256=
|
|
78
|
-
a_sync/a_sync/property.cpython-311-i386-linux-musl.so,sha256=
|
|
77
|
+
a_sync/a_sync/property.c,sha256=4EaRIYEQ6rfCLYqRG8VKBbKsW0Y8NSUkQsc233ljkSM,1268933
|
|
78
|
+
a_sync/a_sync/property.cpython-311-i386-linux-musl.so,sha256=P4Q7wEmfzLAdpoLzvmqb4BWMFyY-_r-2H8ZrL1LzoQY,1560500
|
|
79
79
|
a_sync/a_sync/property.pyi,sha256=GWXCWpJBa_qxBYfbv_Lmt02Md8WK9nJYTu7blO4O2ew,13680
|
|
80
|
-
a_sync/a_sync/property.pyx,sha256=
|
|
80
|
+
a_sync/a_sync/property.pyx,sha256=LlppqhtT7Ej8XFcsEacBrFTKONCD3nNdzZf_cghjNbo,27791
|
|
81
81
|
a_sync/a_sync/singleton.py,sha256=WRJ9FEqeFB8T59NSOiLLcm-QmMCI0H7nwEpvDIUp9IQ,2492
|
|
82
82
|
a_sync/a_sync/modifiers/__init__.pxd,sha256=17tPpMY2ByVbMGIpI5kiP3WX8V9IM5ZHJp0Y3eT6LvE,60
|
|
83
83
|
a_sync/a_sync/modifiers/__init__.py,sha256=JXyupO5h2hICMd-ha642ttCEFib_gAA6v-Ll6cyHNCA,4159
|
|
84
84
|
a_sync/a_sync/modifiers/limiter.py,sha256=WjO32P4vZLvyJnwpm2qFgqwRmCM7eEHxcdXzilzLlps,4303
|
|
85
|
-
a_sync/a_sync/modifiers/manager.c,sha256=
|
|
86
|
-
a_sync/a_sync/modifiers/manager.cpython-311-i386-linux-musl.so,sha256=
|
|
85
|
+
a_sync/a_sync/modifiers/manager.c,sha256=i0xhNtbQ7SDZKdz32tRtTRQUBqXDq820ZtDT4Rji9oc,698888
|
|
86
|
+
a_sync/a_sync/modifiers/manager.cpython-311-i386-linux-musl.so,sha256=MP8Lqd0974Y4yJ7XpzOvaVVyVaNfKQL8XAsxGiMBfno,630132
|
|
87
87
|
a_sync/a_sync/modifiers/manager.pxd,sha256=s7zw1kllYYGpe5uFETRIUFsgbVdtFM8jGh4RxZgm25M,183
|
|
88
88
|
a_sync/a_sync/modifiers/manager.pyi,sha256=oSMpBaZJPxzqaAyLT8ikA1DNHvyPRVqVIXrL0EvDe4A,6222
|
|
89
89
|
a_sync/a_sync/modifiers/manager.pyx,sha256=PcyGpRnWgTZlPRukzPotwtUn43SYcbiR2TXaKSgEioI,9396
|
|
@@ -92,73 +92,73 @@ a_sync/a_sync/modifiers/cache/__init__.py,sha256=SJlZ1EyyzBkYlWMU4XbiAlW9SCqCQbO
|
|
|
92
92
|
a_sync/a_sync/modifiers/cache/memory.py,sha256=vON9K6K3nMkGphfUHCTrtURJUXZ3IE9B757wa-H1oFk,5335
|
|
93
93
|
a_sync/async_property/__init__.pxd,sha256=EGawuQLZIz7ZZLOFmaOQAFUVvabadR0aPYBW7U4TaCo,74
|
|
94
94
|
a_sync/async_property/__init__.py,sha256=L0JYdB7p3RLDRVNExPKl9MtcHaPLIqo5lnpGmHVUI9E,63
|
|
95
|
-
a_sync/async_property/cached.c,sha256=
|
|
96
|
-
a_sync/async_property/cached.cpython-311-i386-linux-musl.so,sha256=
|
|
95
|
+
a_sync/async_property/cached.c,sha256=IEXdn30STSiwGVQZqJSMigDZh7nhS4wF5krt8Lifq-U,880902
|
|
96
|
+
a_sync/async_property/cached.cpython-311-i386-linux-musl.so,sha256=Jz-QdAGIB2KjElRC6m8-BPUxgUOI4TUbkCEwiYsMDz0,961172
|
|
97
97
|
a_sync/async_property/cached.pxd,sha256=u4XHDFvvaRv7y65VyDI8gVmYzlGD-kFlN1H2lc48EqU,339
|
|
98
98
|
a_sync/async_property/cached.pyi,sha256=kL7Cvn7z26R7JROFDQ22GaWll-TvOL79Q-OeQ2oaqbo,1814
|
|
99
99
|
a_sync/async_property/cached.pyx,sha256=4UoHk6yACkpwKjD_DBHLMb2JIAAhKVmhDGU7WZYg-Cc,6314
|
|
100
|
-
a_sync/async_property/proxy.c,sha256=
|
|
101
|
-
a_sync/async_property/proxy.cpython-311-i386-linux-musl.so,sha256=
|
|
100
|
+
a_sync/async_property/proxy.c,sha256=8EArduXTaY87Cw_VUoxbddV_7jat-R5dZRlD2GRj9DU,1533631
|
|
101
|
+
a_sync/async_property/proxy.cpython-311-i386-linux-musl.so,sha256=PoYFYgCtKzJ2EMBFgfD_O2hrH42LiRmqd9yR02ZVNgo,2025140
|
|
102
102
|
a_sync/async_property/proxy.pxd,sha256=fyc5IGOcwNzBP6XsG3vYKjbLP6dOfSVCtGb1EEWDxVU,47
|
|
103
103
|
a_sync/async_property/proxy.pyi,sha256=4GCwklkt5bjp2ADP6SQtVOkL6E9xiyBAf_twX5Cvatg,4218
|
|
104
104
|
a_sync/async_property/proxy.pyx,sha256=0_qGYnr6ZyBtQQGIRI2cMB_o0Bz7RZxJKwuVQGFTgTI,13295
|
|
105
105
|
a_sync/asyncio/__init__.pxd,sha256=Hsy-wTlG1iLWv4mNIRQ9g2rs_8w5ooVIgFFe6VnL7nc,336
|
|
106
106
|
a_sync/asyncio/__init__.py,sha256=Z-_qJgdLFqIacrKRABlk64c1aroLUmgKAqXTeE_GQfU,6333
|
|
107
|
-
a_sync/asyncio/as_completed.c,sha256=
|
|
108
|
-
a_sync/asyncio/as_completed.cpython-311-i386-linux-musl.so,sha256=
|
|
107
|
+
a_sync/asyncio/as_completed.c,sha256=6wqsIHt2QmOIrco3cl8tPQPm1LvDCwaVKmsM540S6GI,783043
|
|
108
|
+
a_sync/asyncio/as_completed.cpython-311-i386-linux-musl.so,sha256=uYTCTrgOSewCeNZp4SvO1itLjOBIuHjTJwSqXS5a9g0,854344
|
|
109
109
|
a_sync/asyncio/as_completed.pxd,sha256=mISE2jdb2jOS0q3TKg0F_k-Zf-d3hzdBNKU1PT-Tn40,162
|
|
110
110
|
a_sync/asyncio/as_completed.pyi,sha256=-VdtfMlX0XdkqJbJm8C0gEAi_BfRbkz3Xkdver6vHs4,3753
|
|
111
111
|
a_sync/asyncio/as_completed.pyx,sha256=ar0gJ3iN6-4Jw8xy6i7KVJ54RnAGt1JWE85Wh6kPF48,9052
|
|
112
|
-
a_sync/asyncio/create_task.c,sha256=
|
|
113
|
-
a_sync/asyncio/create_task.cpython-311-i386-linux-musl.so,sha256=
|
|
112
|
+
a_sync/asyncio/create_task.c,sha256=zvj85peWBNkLJu7NvzUkNv1MG7PPaAIzHDk0SOsa5NA,654122
|
|
113
|
+
a_sync/asyncio/create_task.cpython-311-i386-linux-musl.so,sha256=IpevJRHHBAV_os34KeMv4YG3ClpS093VDFBtd6UG3mc,639308
|
|
114
114
|
a_sync/asyncio/create_task.pxd,sha256=x-sZVX-26NoqxYb5mH33uh2Mg-3AqqdYGXx4Ai7xZwU,143
|
|
115
115
|
a_sync/asyncio/create_task.pyi,sha256=5H2z4k_2dGG2QTGjGEgP1N6ITuClYYWzkPbzaeQwKks,1864
|
|
116
116
|
a_sync/asyncio/create_task.pyx,sha256=SUpoo1h0m_a4dPavfQyoOulkgtsKR4KucJZixU1ebhc,8722
|
|
117
|
-
a_sync/asyncio/gather.c,sha256=
|
|
118
|
-
a_sync/asyncio/gather.cpython-311-i386-linux-musl.so,sha256=
|
|
117
|
+
a_sync/asyncio/gather.c,sha256=7tscePCm3Et0ZVT3p0Qj3aqDG-PSJnskvIdS_ioEC9w,684335
|
|
118
|
+
a_sync/asyncio/gather.cpython-311-i386-linux-musl.so,sha256=fcdbqgZAy7t44NZhwQBzJu80A4-5gxH9cjOGVo6hHF0,680632
|
|
119
119
|
a_sync/asyncio/gather.pyi,sha256=7P_GapnZAz4z3xDZeg4wKpM1zD-6nVd15tRzG6b_jKk,4515
|
|
120
120
|
a_sync/asyncio/gather.pyx,sha256=4ALHvhJPQsNtw7b9dsbhwmKpXEbiRzOCjMqagi3sTXs,8566
|
|
121
|
-
a_sync/asyncio/igather.c,sha256=
|
|
122
|
-
a_sync/asyncio/igather.cpython-311-i386-linux-musl.so,sha256
|
|
121
|
+
a_sync/asyncio/igather.c,sha256=EwzdZNrE78JY6myXhdQUlE-FM_oRe9wJ3oNvYUa3OHY,510798
|
|
122
|
+
a_sync/asyncio/igather.cpython-311-i386-linux-musl.so,sha256=-UFnAiK0kV3GDX7_IKRajJ6qSqt2P2FSzZtyAnknXzQ,378880
|
|
123
123
|
a_sync/asyncio/igather.pxd,sha256=M9hMUtgp6118pa0ddR9daQubvnceefnbt4pbvEl0doE,71
|
|
124
124
|
a_sync/asyncio/igather.pyi,sha256=ms6FY78h_8D3aiuPsPo0h3AheTzLGy-73ja-s2gmW_A,201
|
|
125
125
|
a_sync/asyncio/igather.pyx,sha256=reJZ0Jkbx2MLu-LTrQ_hOPfhEdbFlPEQ9ro98sAcRRA,6574
|
|
126
|
-
a_sync/asyncio/sleep.c,sha256=
|
|
127
|
-
a_sync/asyncio/sleep.cpython-311-i386-linux-musl.so,sha256=
|
|
126
|
+
a_sync/asyncio/sleep.c,sha256=C_bhRlml36Cithd1l9AUIOvZL9Qz5u1TKSqP8VoIu_I,373227
|
|
127
|
+
a_sync/asyncio/sleep.cpython-311-i386-linux-musl.so,sha256=JGlHH7Zpaj_BEBQqjOecUwSIeMDrnj3wOYeZ9mdS6nw,228196
|
|
128
128
|
a_sync/asyncio/sleep.pyi,sha256=ab8OtiZm4Py0-sVQA2pzGVZiHUoTItkJG_Nd02xduuE,537
|
|
129
129
|
a_sync/asyncio/sleep.pyx,sha256=kjNeRimAfMZB6vJs7t-SbtMgnRqhybO3cZ7uijkosJs,1273
|
|
130
130
|
a_sync/primitives/__init__.pxd,sha256=FIO-eD4HaJ259mz3XB6HE1YF4tDej6ojrxQ_kx-tMwM,38
|
|
131
131
|
a_sync/primitives/__init__.py,sha256=U5r-Do_TKR1FbfLEHuckiYs87QkN4HsYNZfunRhX52c,1642
|
|
132
|
-
a_sync/primitives/_debug.c,sha256=
|
|
133
|
-
a_sync/primitives/_debug.cpython-311-i386-linux-musl.so,sha256=
|
|
132
|
+
a_sync/primitives/_debug.c,sha256=Rwfu2c-to5CNE0MU6xJkjy7_DkyRBnlkyexy4AMebCk,658667
|
|
133
|
+
a_sync/primitives/_debug.cpython-311-i386-linux-musl.so,sha256=tYn0uDYrc2-Z9nz1UaXEh8XbnGGAFY9e2781U0g7xEI,603160
|
|
134
134
|
a_sync/primitives/_debug.pxd,sha256=EaMH5xgQHs7hwnWFUocHEl9pAmUZs9J1aRVtb62zvw0,464
|
|
135
135
|
a_sync/primitives/_debug.pyi,sha256=mcGGn_C9ICgn2mcP-cER1ps-q1pdei-2niu-fEQnFXQ,2175
|
|
136
136
|
a_sync/primitives/_debug.pyx,sha256=NH2hr-yQLz1pKnmleIpIeDVTy75KSguQpUiuoza_ahc,7849
|
|
137
|
-
a_sync/primitives/_loggable.c,sha256=
|
|
138
|
-
a_sync/primitives/_loggable.cpython-311-i386-linux-musl.so,sha256=
|
|
137
|
+
a_sync/primitives/_loggable.c,sha256=D-kB1XpxR4hswFOpoJgLDIp0T5IMGXKs26YDSFAV6BU,474633
|
|
138
|
+
a_sync/primitives/_loggable.cpython-311-i386-linux-musl.so,sha256=Eq6nF4FCWcZhgPsP_toJiN4m_tWUTTLG7QBUvHBHkOY,378788
|
|
139
139
|
a_sync/primitives/_loggable.pxd,sha256=1YRkqc20KcPoTukbWXn7qpbZ8zA16X1h_84vadCqSPc,133
|
|
140
140
|
a_sync/primitives/_loggable.pyi,sha256=MxE1kINwYiXBFq6tPSWppWs4hToR-6vfBZwIhGJ11z8,1934
|
|
141
141
|
a_sync/primitives/_loggable.pyx,sha256=jxKSBCs4VlXuYC7LsxbUJw0FJInjBKOkEdBSoqCndxY,3003
|
|
142
142
|
a_sync/primitives/queue.py,sha256=k1ldYX7ni-W5vdVXRFrupyVD1JV5P6CYMqfndzPWwV8,33113
|
|
143
143
|
a_sync/primitives/locks/__init__.pxd,sha256=DuPhDRldnCwqBUxgo9V5K0GmA8BWLf5fC266ujDQ9pc,302
|
|
144
144
|
a_sync/primitives/locks/__init__.py,sha256=XPiWbxxPyaCC-NnfNm42up2qf61LdqFgzGkq082DL1Q,436
|
|
145
|
-
a_sync/primitives/locks/counter.c,sha256=
|
|
146
|
-
a_sync/primitives/locks/counter.cpython-311-i386-linux-musl.so,sha256=
|
|
145
|
+
a_sync/primitives/locks/counter.c,sha256=BhVWZopsnAUAOG-uuMh7HCo8fJ9eGgkdEUAUf-zbKgA,754048
|
|
146
|
+
a_sync/primitives/locks/counter.cpython-311-i386-linux-musl.so,sha256=2D-gkH5ooPYvTrOhvmoY_rfrPPfZBjIf7Bs4js1smNI,721768
|
|
147
147
|
a_sync/primitives/locks/counter.pxd,sha256=_HoPXPMTRY3Gw3GPUB2jAx7lUpjJ4QyO75YiR_BehAQ,409
|
|
148
148
|
a_sync/primitives/locks/counter.pyi,sha256=d83iZwFj5mK9fIohh7n1uRdRiGAnfi2FNMZSyKtli9A,5077
|
|
149
149
|
a_sync/primitives/locks/counter.pyx,sha256=H_3LN50-zDvBSgHoKXXOMlUKs78aZSFDhu8gQrhWV5Y,9055
|
|
150
|
-
a_sync/primitives/locks/event.c,sha256=
|
|
151
|
-
a_sync/primitives/locks/event.cpython-311-i386-linux-musl.so,sha256=
|
|
150
|
+
a_sync/primitives/locks/event.c,sha256=FeXw9i_sMdH_DKZwJc9T4haX8kqCnWDKPNh7zOeHZdI,714846
|
|
151
|
+
a_sync/primitives/locks/event.cpython-311-i386-linux-musl.so,sha256=p4vZGLlYjAmb64IoJ4AdOuXv1ndEjkFWSNNV0miPNL0,665068
|
|
152
152
|
a_sync/primitives/locks/event.pxd,sha256=Wk1wLD8P6Nml1mzrRM6H34bD06LZWovjEYKnRhGcXE4,696
|
|
153
153
|
a_sync/primitives/locks/event.pyi,sha256=cWK5LPzpbERpaXjYh5LqDcDuJDIexJjhP606mYMbKBw,1456
|
|
154
154
|
a_sync/primitives/locks/event.pyx,sha256=PFQoQVZ9DozV2LOdKK-03fWpX_MrvBqxikKk4k3PjHs,6049
|
|
155
|
-
a_sync/primitives/locks/prio_semaphore.c,sha256=
|
|
156
|
-
a_sync/primitives/locks/prio_semaphore.cpython-311-i386-linux-musl.so,sha256=
|
|
155
|
+
a_sync/primitives/locks/prio_semaphore.c,sha256=TYmadLW6QQIZs7d5M2qjIPOyPaFKd2penpouRNopCTk,1224091
|
|
156
|
+
a_sync/primitives/locks/prio_semaphore.cpython-311-i386-linux-musl.so,sha256=0BfbPo88Ims54Y-uhEUPrQ_QcAsyOtJGlsW5-pm73Ms,1232652
|
|
157
157
|
a_sync/primitives/locks/prio_semaphore.pxd,sha256=SZXX1jH12m9PKH9VmrKpLdTctY0c_wYS75YGWoDdlzE,1041
|
|
158
158
|
a_sync/primitives/locks/prio_semaphore.pyi,sha256=w3xGj3-kdFEjw4k8vzt4TiWsG8j5KC6erXBNNrEhaL0,7644
|
|
159
159
|
a_sync/primitives/locks/prio_semaphore.pyx,sha256=DAgcufTedvvPBj5BfM56chjplEi0QUd1qAV49bSb-oM,22096
|
|
160
|
-
a_sync/primitives/locks/semaphore.c,sha256=
|
|
161
|
-
a_sync/primitives/locks/semaphore.cpython-311-i386-linux-musl.so,sha256=
|
|
160
|
+
a_sync/primitives/locks/semaphore.c,sha256=5QTrKaQSNvXchAqFH2KMz1nZy-i2YopgisLaOmUF21s,1199704
|
|
161
|
+
a_sync/primitives/locks/semaphore.cpython-311-i386-linux-musl.so,sha256=Nv-Ftz85YV0J5eH7d2kk69hNW86zYg3vKiIfgzzo7fY,1249052
|
|
162
162
|
a_sync/primitives/locks/semaphore.pxd,sha256=zy-PgktLUsFaXxvrSbB3m6gxisgzchCpKrcX8Zzwq_I,585
|
|
163
163
|
a_sync/primitives/locks/semaphore.pyi,sha256=ynHIA0k9HMzbsTfhMAwCEfpZSECVhXxhcNAwwQmsSlI,5975
|
|
164
164
|
a_sync/primitives/locks/semaphore.pyx,sha256=eQX6J5SdWK5qnXNPs6frO6BpQf9RuExNwZIjMlkNnHI,14965
|
|
@@ -166,12 +166,12 @@ a_sync/sphinx/__init__.py,sha256=UvdsakVmkn0Lw4vEd3jA3_Acymde95-78o87lel8ikk,49
|
|
|
166
166
|
a_sync/sphinx/ext.py,sha256=E93N5AmGcfGksN1J3oUsvewJZVZ3dNYcr0mwKJQ3ALk,8917
|
|
167
167
|
a_sync/utils/__init__.py,sha256=Y6R-IcD5ROzp2Zs3ZMv3bapkcfOpJHlBeD838bntd-Q,3213
|
|
168
168
|
a_sync/utils/iterators.py,sha256=GkT2fgMVKDorT-BKPPOPOIDj5Zt4yl-5vAmpn4H5wGA,11055
|
|
169
|
-
a_sync/utils/repr.c,sha256=
|
|
170
|
-
a_sync/utils/repr.cpython-311-i386-linux-musl.so,sha256=
|
|
169
|
+
a_sync/utils/repr.c,sha256=khkO2MHt8zyaqn9F5xteDQvUj-6e88SRYKNdMV-E808,638597
|
|
170
|
+
a_sync/utils/repr.cpython-311-i386-linux-musl.so,sha256=cMcgvvSuLhO50NwAu4sSr789Dr1SmXml4uv5kydk0HA,572808
|
|
171
171
|
a_sync/utils/repr.pyi,sha256=PWdsa6sF9_3nBqEgLaxtaHty7o7gwL--jPqvcelHY10,131
|
|
172
172
|
a_sync/utils/repr.pyx,sha256=xdsVdK75Zi5pAoh-8qRG0q7F0ySAq1zDkksZw37FoL4,2632
|
|
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.26.dist-info/METADATA,sha256=K9j50ffU6dMky4aFzes7tEhywTJnCBa1FAgVCEISbKk,13197
|
|
174
|
+
ez_a_sync-0.32.26.dist-info/WHEEL,sha256=6ltumPE74Em2X1OXYv5iIjaGYcDTCG-wPLy9Dk1DJEw,110
|
|
175
|
+
ez_a_sync-0.32.26.dist-info/top_level.txt,sha256=ew2xVyFeZE_a5XMEL64h7-vJIbaBQieaFcvBAWUpU_s,7
|
|
176
|
+
ez_a_sync-0.32.26.dist-info/RECORD,,
|
|
177
|
+
ez_a_sync-0.32.26.dist-info/licenses/LICENSE.txt,sha256=1on6-17OUMlja6vSPTcmlmeT_DwujCZJijYxaplBvZk,1075
|
|
File without changes
|
|
File without changes
|
|
File without changes
|