ez-a-sync 0.32.15__cp311-cp311-musllinux_1_2_i686.whl → 0.32.17__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.

@@ -2,6 +2,8 @@ import asyncio
2
2
  from asyncio import futures, tasks
3
3
  from typing import Awaitable, Iterable, List, TypeVar
4
4
 
5
+ from cpython.version cimport PY_VERSION_HEX
6
+
5
7
  from a_sync import _smart
6
8
  from a_sync.a_sync._helpers cimport get_event_loop
7
9
 
@@ -80,10 +82,11 @@ cdef object cigather(object coros_or_futures, bint return_exceptions = False):
80
82
  # If gather is being cancelled we must propagate the
81
83
  # cancellation regardless of *return_exceptions* argument.
82
84
  # See issue 32684.
83
- try:
84
- exc = fut._make_cancelled_error()
85
- except AttributeError:
86
- exc = CancelledError()
85
+ exc = (
86
+ CancelledError()
87
+ if PY_VERSION_HEX < 0x03090000 # Python 3.9
88
+ else fut._make_cancelled_error()
89
+ )
87
90
  outer.set_exception(exc)
88
91
  else:
89
92
  outer.set_result([_get_result_or_exc(child) for child in children])
@@ -105,10 +108,11 @@ cdef object cigather(object coros_or_futures, bint return_exceptions = False):
105
108
  # Check if 'fut' is cancelled first, as
106
109
  # 'fut.exception()' will *raise* a CancelledError
107
110
  # instead of returning it.
108
- try:
109
- exc = fut._make_cancelled_error()
110
- except AttributeError:
111
- exc = CancelledError()
111
+ exc = (
112
+ CancelledError()
113
+ if PY_VERSION_HEX < 0x03090000 # Python 3.9
114
+ else fut._make_cancelled_error()
115
+ )
112
116
  outer.set_exception(exc)
113
117
  return
114
118
  else:
@@ -125,10 +129,11 @@ cdef object cigather(object coros_or_futures, bint return_exceptions = False):
125
129
  # If gather is being cancelled we must propagate the
126
130
  # cancellation regardless of *return_exceptions* argument.
127
131
  # See issue 32684.
128
- try:
129
- exc = fut._make_cancelled_error()
130
- except AttributeError:
131
- exc = CancelledError()
132
+ exc = (
133
+ CancelledError()
134
+ if PY_VERSION_HEX < 0x03090000 # Python 3.9
135
+ else fut._make_cancelled_error()
136
+ )
132
137
  outer.set_exception(exc)
133
138
  else:
134
139
  outer.set_result([_get_result_or_exc(child) for child in children])
@@ -162,6 +167,8 @@ cdef object _get_empty_result_set_fut(loop):
162
167
 
163
168
  cdef object _get_result_or_exc(fut: asyncio.Future):
164
169
  if fut.cancelled():
170
+ if PY_VERSION_HEX < 0x03090000:
171
+ return CancelledError()
165
172
  # Check if 'fut' is cancelled first, as 'fut.exception()'
166
173
  # will *raise* a CancelledError instead of returning it.
167
174
  # Also, since we're adding the exception return value
a_sync/task.py CHANGED
@@ -761,7 +761,7 @@ def _unwrap(
761
761
  # this speeds things up a bit by bypassing some logic
762
762
  # TODO implement it like this elsewhere if profilers suggest
763
763
  unwrapped = (
764
- wrapped_func._modified_fn if wrapped_func._async_def else wrapped_func._asyncified
764
+ wrapped_func._modified_fn if wrapped_func.is_async_def() else wrapped_func._asyncified
765
765
  )
766
766
  else:
767
767
  unwrapped = wrapped_func
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ez_a_sync
3
- Version: 0.32.15
3
+ Version: 0.32.17
4
4
  Summary: A library that makes it easy to define objects that can be used for both sync and async use cases.
5
5
  Home-page: https://github.com/BobTheBuidler/a-sync
6
6
  Author: BobTheBuidler
@@ -1,11 +1,11 @@
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=UrDqNkHGqvSY4O9wM9ObaoOP00cLq1sM-ucRnUvLyKk,5726
4
- a_sync/_smart.c,sha256=M_pxk1D2tQ8mQei-trBm5-mGkmYpibtgmYAG8_Fc_Jc,934419
5
- a_sync/_smart.cpython-311-i386-linux-musl.so,sha256=6y_mWcEtjkFQrljzX23CQrAu7JLlSpMj8WmNSqP8vBk,1002156
4
+ a_sync/_smart.c,sha256=F6BKemtVy0XMKg4EsgqzIf1oO_kBFHco7RKYRHAh5hk,917706
5
+ a_sync/_smart.cpython-311-i386-linux-musl.so,sha256=M1jB138FaCMrTVYz4CRXxSBOfqnObM1dYo3KM-g4cjY,978532
6
6
  a_sync/_smart.pxd,sha256=3FlPqSvAtmGXIDFzfm7wpkvL6xt8z8w-vwow4Lura2g,76
7
7
  a_sync/_smart.pyi,sha256=mUQwUiiSsMsbtJTKdXm076ua5B2A9USaKgjZq1Se_ZQ,5390
8
- a_sync/_smart.pyx,sha256=U61YXFAFcTi10YVXeCRgxJC2HykBPhLfpF0lS6zYfNQ,20241
8
+ a_sync/_smart.pyx,sha256=5ceSxpdh51l36-fKHHW9YI6lmc8_PlarM8fRIqzlI3A,19773
9
9
  a_sync/_typing.py,sha256=x24VIVjxz8sUWPmQR072pHAQxJO769Nn02f3eakFpe8,6850
10
10
  a_sync/aliases.py,sha256=TbLyuLeFfJEmcC5-NP6h4DQ9QXlQjGny2NUP_x1tflw,212
11
11
  a_sync/debugging.c,sha256=RfJnHds7wZdPmWg5PYc26nqjOQijqdOMMbGk43tvUhU,589339
@@ -29,18 +29,18 @@ 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
- a_sync/task.py,sha256=0aPqOe-nswQniHk1wzZ_pCVKXlWPgOSftYA4CHMertU,35045
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=BIV7KxjkbqOuOsjuSy1Lspvhv4Z-kwhoYZp4fUlPvZQ,843727
35
- a_sync/a_sync/_descriptor.cpython-311-i386-linux-musl.so,sha256=HTaJCRVj3iFhZY91WLgapImGcjuzutSFlndVdvH5NK0,954148
34
+ a_sync/a_sync/_descriptor.c,sha256=Q2O12TGkhzGShoRS4E5RSBiOUoPsoZWuEQ4_gWnCcpA,844125
35
+ a_sync/a_sync/_descriptor.cpython-311-i386-linux-musl.so,sha256=3v908etR4zLkHa9sGp-ksztpPI853qC5DFqI9hx0VJE,954764
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
38
  a_sync/a_sync/_flags.c,sha256=hxVtZT5faViQExnKIQnSBb-p9Rbqpxpor9dNxQH9dZA,217269
39
39
  a_sync/a_sync/_flags.cpython-311-i386-linux-musl.so,sha256=tC5lHHwq7dmf8wGQMZUQaWqQhTXX6Ye2_cSvOGQ6gQY,141160
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=H3xMbljWjqkTByQmwyFkdJGoMXH_EeEQfHPtn9qeAng,550837
43
- a_sync/a_sync/_helpers.cpython-311-i386-linux-musl.so,sha256=VWi69YPg1fSh2xMXjCH7TRw9TgxubtWi2R4i9xZ8QAc,584688
42
+ a_sync/a_sync/_helpers.c,sha256=jlTq1V_AHGwTlo53o-NXmSxDquWj2_ZqmA1U900L3Ys,551235
43
+ a_sync/a_sync/_helpers.cpython-311-i386-linux-musl.so,sha256=09mPuMnJkk_-o8LWcO-dreaXOdDo4U9WVIQzU0sd5JM,585292
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
@@ -48,7 +48,7 @@ a_sync/a_sync/_kwargs.c,sha256=blxZEu_yTOZAAn1aARwbJlTKoSgC3ojhSWeGgG6Y6ws,40523
48
48
  a_sync/a_sync/_kwargs.cpython-311-i386-linux-musl.so,sha256=Fd2gI8xRF4yHjVpAkYdCaNJ5Fev7i-5B1CqnHdNYAgs,334136
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
- a_sync/a_sync/_meta.py,sha256=PnmPbTSGOB3WMjJUj8FfhafrkGcWJ-SzjYeENfS37NI,9427
51
+ a_sync/a_sync/_meta.py,sha256=iET1qFtqdMZmMRc_-e1rWL2VgYJ7ymsZ6_JdWrrcDS0,9429
52
52
  a_sync/a_sync/abstract.c,sha256=my8pajUN_xUqEIJitvZ7ZN5Mxy8e4lJv-iXgV308oQE,461336
53
53
  a_sync/a_sync/abstract.cpython-311-i386-linux-musl.so,sha256=DZMnt7oje-uq2LOhAdCuSZOB6BCAf2fD_iGyXJprH70,486332
54
54
  a_sync/a_sync/abstract.pyi,sha256=IGEh74mnvZECWpSr0bh-ZQeFc-6Q4cu9EefhEaDLp2c,5071
@@ -64,20 +64,20 @@ a_sync/a_sync/flags.cpython-311-i386-linux-musl.so,sha256=DTkUn1p0SWi-sOGsUcRFhP
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=12-cYu-_CbCPan-pW5N_4R-AeiUEkDOgyAgtjRZTp70,1692632
68
- a_sync/a_sync/function.cpython-311-i386-linux-musl.so,sha256=L8PNW6dvyfxLvs1c8n34QZBzyhDtFkJrVjh7zOVZO_c,1999864
69
- a_sync/a_sync/function.pxd,sha256=WLkHI94wFFFMoOwgEg3A83FIR_1h3ViZWENHE3VWHno,679
67
+ a_sync/a_sync/function.c,sha256=NCx-C-d1UPEP7cWvCmwHw1TAyNs1p4kHd21EeLiHoME,1712834
68
+ a_sync/a_sync/function.cpython-311-i386-linux-musl.so,sha256=LhsSnL0R2cwTEwyg9VEpuY0GDp7Yz5IVrrwqbP5q-_c,2005972
69
+ a_sync/a_sync/function.pxd,sha256=QOGVstj2s4oQy18QwjCy--eu4pOlheVwWg3oiT2KDno,830
70
70
  a_sync/a_sync/function.pyi,sha256=3F4BQplDW0IU5wDlkvc0T9n58qMQHtop3EPo1GYV0rg,17737
71
- a_sync/a_sync/function.pyx,sha256=yV4I_xTWZ02Z7gm_gtsHUGCEKNIIWlsEqh3AFddbaHM,45603
72
- a_sync/a_sync/method.c,sha256=t3BPxuFhK8z8ZODABEx1L_whq6JUTwPwoJkY-s7yjw4,1261576
73
- a_sync/a_sync/method.cpython-311-i386-linux-musl.so,sha256=ZBGFIj1Yi7yLc4zCI0waaE21YG3MLl_cg1rS80UdhSM,1600364
74
- a_sync/a_sync/method.pxd,sha256=3kcpKfsO6rtO8wFokzShcwlAeSKxy9WNq2t710zi8dw,123
71
+ a_sync/a_sync/function.pyx,sha256=YqIh6u0xHl8lRcKvXCtwASoA1Fu6hxFlamZck2JfybM,45792
72
+ a_sync/a_sync/method.c,sha256=go8jgtOweE-5HQKgLr86Jb1REglPDLFsOx408c7Pyio,1390305
73
+ a_sync/a_sync/method.cpython-311-i386-linux-musl.so,sha256=_aJ4XJyt2wFnsQrtA98fHKIip4xKP6m2-AwPgS5AU70,1757560
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
- a_sync/a_sync/method.pyx,sha256=gTyPQn1znZCsIHnqeXC2nPRoRNBrnpHTx7fAQwW9nEk,35131
77
- a_sync/a_sync/property.c,sha256=xNyEG7-rehLJ5sSqjJopkWCkXvDf8CvT6ZAk_emBoJQ,1243816
78
- a_sync/a_sync/property.cpython-311-i386-linux-musl.so,sha256=gRhPbFyYmzqm9zy_yAaG1_B-zuP9E4PCz7cYZ3AgALo,1580388
76
+ a_sync/a_sync/method.pyx,sha256=2asS_Ej5q6-BZ9T8JYqXjLOaQ9-n2SBcmXaAvSoJgps,36146
77
+ a_sync/a_sync/property.c,sha256=gJra9kx2XTDD_9tLy-xvQOqYvgXj2f5o4zDZMX9qMbA,1248760
78
+ a_sync/a_sync/property.cpython-311-i386-linux-musl.so,sha256=_1TwiOzqV53ctUiewITv_I-CM_WEEiOeUCsw9ApmFFk,1581920
79
79
  a_sync/a_sync/property.pyi,sha256=GWXCWpJBa_qxBYfbv_Lmt02Md8WK9nJYTu7blO4O2ew,13680
80
- a_sync/a_sync/property.pyx,sha256=qEFhqtYQhg2rsoDwXdfyVmtCfKvQa--OUkF89plRSek,27599
80
+ a_sync/a_sync/property.pyx,sha256=hecMUMrIqhrEKUEx6EPIR4QnhRpPOx-28_TbkS_7vCU,27803
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
@@ -109,20 +109,20 @@ a_sync/asyncio/as_completed.cpython-311-i386-linux-musl.so,sha256=WnoEoT4DXwwqSX
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=KpPjTlsDn2GHSRAxB4BwQNCOSC8sWHSpJhKZkpO08Sw,606164
113
- a_sync/asyncio/create_task.cpython-311-i386-linux-musl.so,sha256=Ig9lyXDuT3KPhGw1bIymNQGgx6GdCNuUmQUPUXpGzBU,632488
112
+ a_sync/asyncio/create_task.c,sha256=hx8mAgxWMzPEnVLvW8upI7afOc72rlhANXvgkjAF8Pc,603768
113
+ a_sync/asyncio/create_task.cpython-311-i386-linux-musl.so,sha256=yrE8nHSTZXVXnftVUnSHPwYIApj3iYHlLNyaUZc7CTA,630040
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
- a_sync/asyncio/create_task.pyx,sha256=tMvH96pSYgxQamU5Vfaeq-5SdyC3aBXtBdi-PF5CwrA,8597
116
+ a_sync/asyncio/create_task.pyx,sha256=xB_f3WrTxaJ2h2zgy16VzDTMJtfc-GcTbjeGTGbz7f4,8771
117
117
  a_sync/asyncio/gather.c,sha256=MLhPvLSGGCpxgMNtiA8Xcx3nniDOLzMSVYnFbSFWukE,637555
118
118
  a_sync/asyncio/gather.cpython-311-i386-linux-musl.so,sha256=qbyve2axcrcTM1MjD1s9oEcH9jfdilwJvfTH_rHZfB4,654992
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=X7Pcp1euFrTaUY3fkHHfaYmYexKIPapI9I_NmFYpMG8,485487
122
- a_sync/asyncio/igather.cpython-311-i386-linux-musl.so,sha256=sDOAw2wFn8AyXq3855vioYUyOr8RAkk7l9Syj62ZunE,574356
121
+ a_sync/asyncio/igather.c,sha256=467zCelfZro_nvIgmwbYFmceE45Cibb8JvpTMsKofM8,471337
122
+ a_sync/asyncio/igather.cpython-311-i386-linux-musl.so,sha256=biYOkQ81lT8caj4oOTf2u1OKxk86CVVOSV-2903hnj0,528932
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
- a_sync/asyncio/igather.pyx,sha256=TctS1kLzaYztLrZJmLwIOOvJTthKiEwsy-AaW1ObnKg,6325
125
+ a_sync/asyncio/igather.pyx,sha256=reJZ0Jkbx2MLu-LTrQ_hOPfhEdbFlPEQ9ro98sAcRRA,6574
126
126
  a_sync/asyncio/sleep.c,sha256=vrlY1_8dMSyk1ggO6tk5Td43gujjXiJAt2FFUgMMpoU,342937
127
127
  a_sync/asyncio/sleep.cpython-311-i386-linux-musl.so,sha256=3_AGh_dgAnRDlZZaq6yQQL8g8glbSjlVpEImzbkqomA,236908
128
128
  a_sync/asyncio/sleep.pyi,sha256=ab8OtiZm4Py0-sVQA2pzGVZiHUoTItkJG_Nd02xduuE,537
@@ -170,8 +170,8 @@ a_sync/utils/repr.c,sha256=4HDcDzNN4_R5Z_QrhMy9kxWXK7iALDKpa--_D0k6_-Y,571751
170
170
  a_sync/utils/repr.cpython-311-i386-linux-musl.so,sha256=h0_7VzWP6qRe6_eLjq_PPnito-C4_HCMw-Iiz_CZRcM,574456
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.15.dist-info/METADATA,sha256=eBoOPV83KbkLoPxFk77LFMoc8j-7zK1fPnFmD3m2gCo,13197
174
- ez_a_sync-0.32.15.dist-info/WHEEL,sha256=Tvo3dPyAZeB4pKSMLyEy9dJwCWISj00zkZVfm-ErvBw,110
175
- ez_a_sync-0.32.15.dist-info/top_level.txt,sha256=ew2xVyFeZE_a5XMEL64h7-vJIbaBQieaFcvBAWUpU_s,7
176
- ez_a_sync-0.32.15.dist-info/RECORD,,
177
- ez_a_sync-0.32.15.dist-info/licenses/LICENSE.txt,sha256=1on6-17OUMlja6vSPTcmlmeT_DwujCZJijYxaplBvZk,1075
173
+ ez_a_sync-0.32.17.dist-info/METADATA,sha256=oWjFySa4SM26anM8W9ht4wW6jmABmoge0fgpocxc-hA,13197
174
+ ez_a_sync-0.32.17.dist-info/WHEEL,sha256=Tvo3dPyAZeB4pKSMLyEy9dJwCWISj00zkZVfm-ErvBw,110
175
+ ez_a_sync-0.32.17.dist-info/top_level.txt,sha256=ew2xVyFeZE_a5XMEL64h7-vJIbaBQieaFcvBAWUpU_s,7
176
+ ez_a_sync-0.32.17.dist-info/RECORD,,
177
+ ez_a_sync-0.32.17.dist-info/licenses/LICENSE.txt,sha256=1on6-17OUMlja6vSPTcmlmeT_DwujCZJijYxaplBvZk,1075