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
|
a_sync/a_sync/property.pyx
CHANGED
|
@@ -780,9 +780,8 @@ class HiddenMethodDescriptor(ASyncMethodDescriptorAsyncDefault[I, Tuple[()], T])
|
|
|
780
780
|
|
|
781
781
|
cdef _ASyncBoundMethod bound
|
|
782
782
|
cdef str field_name = self.field_name
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
except KeyError:
|
|
783
|
+
bound = instance.__dict__.get(field_name)
|
|
784
|
+
if bound is None:
|
|
786
785
|
bound = HiddenMethod(
|
|
787
786
|
instance,
|
|
788
787
|
self.__wrapped__,
|