ez-a-sync 0.32.10__cp311-cp311-macosx_11_0_arm64.whl → 0.32.12__cp311-cp311-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 +1431 -1560
- a_sync/_smart.cpython-311-darwin.so +0 -0
- a_sync/_smart.pyx +28 -16
- a_sync/a_sync/_descriptor.cpython-311-darwin.so +0 -0
- a_sync/a_sync/_flags.cpython-311-darwin.so +0 -0
- a_sync/a_sync/_helpers.cpython-311-darwin.so +0 -0
- a_sync/a_sync/_kwargs.cpython-311-darwin.so +0 -0
- a_sync/a_sync/abstract.cpython-311-darwin.so +0 -0
- a_sync/a_sync/base.cpython-311-darwin.so +0 -0
- a_sync/a_sync/flags.cpython-311-darwin.so +0 -0
- a_sync/a_sync/function.cpython-311-darwin.so +0 -0
- a_sync/a_sync/method.cpython-311-darwin.so +0 -0
- a_sync/a_sync/modifiers/manager.c +614 -937
- a_sync/a_sync/modifiers/manager.cpython-311-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-311-darwin.so +0 -0
- a_sync/a_sync/property.pyx +4 -4
- a_sync/async_property/cached.cpython-311-darwin.so +0 -0
- a_sync/async_property/proxy.cpython-311-darwin.so +0 -0
- a_sync/asyncio/as_completed.cpython-311-darwin.so +0 -0
- a_sync/asyncio/create_task.c +735 -579
- a_sync/asyncio/create_task.cpython-311-darwin.so +0 -0
- a_sync/asyncio/create_task.pyx +7 -4
- a_sync/asyncio/gather.cpython-311-darwin.so +0 -0
- a_sync/asyncio/igather.cpython-311-darwin.so +0 -0
- a_sync/asyncio/sleep.cpython-311-darwin.so +0 -0
- a_sync/debugging.cpython-311-darwin.so +0 -0
- a_sync/exceptions.cpython-311-darwin.so +0 -0
- a_sync/functools.cpython-311-darwin.so +0 -0
- a_sync/iter.cpython-311-darwin.so +0 -0
- a_sync/primitives/_debug.cpython-311-darwin.so +0 -0
- a_sync/primitives/_loggable.cpython-311-darwin.so +0 -0
- a_sync/primitives/locks/counter.cpython-311-darwin.so +0 -0
- a_sync/primitives/locks/event.c +426 -428
- a_sync/primitives/locks/event.cpython-311-darwin.so +0 -0
- a_sync/primitives/locks/event.pyx +3 -1
- a_sync/primitives/locks/prio_semaphore.c +2623 -1503
- a_sync/primitives/locks/prio_semaphore.cpython-311-darwin.so +0 -0
- a_sync/primitives/locks/prio_semaphore.pxd +9 -8
- a_sync/primitives/locks/prio_semaphore.pyx +65 -22
- a_sync/primitives/locks/semaphore.c +1048 -1051
- a_sync/primitives/locks/semaphore.cpython-311-darwin.so +0 -0
- a_sync/primitives/locks/semaphore.pyx +4 -2
- a_sync/utils/repr.cpython-311-darwin.so +0 -0
- {ez_a_sync-0.32.10.dist-info → ez_a_sync-0.32.12.dist-info}/METADATA +1 -1
- {ez_a_sync-0.32.10.dist-info → ez_a_sync-0.32.12.dist-info}/RECORD +50 -50
- {ez_a_sync-0.32.10.dist-info → ez_a_sync-0.32.12.dist-info}/WHEEL +0 -0
- {ez_a_sync-0.32.10.dist-info → ez_a_sync-0.32.12.dist-info}/licenses/LICENSE.txt +0 -0
- {ez_a_sync-0.32.10.dist-info → ez_a_sync-0.32.12.dist-info}/top_level.txt +0 -0
|
Binary file
|
|
@@ -77,7 +77,7 @@ cdef class ModifierManager:
|
|
|
77
77
|
if key not in _valid_modifiers:
|
|
78
78
|
raise ValueError(f"'{key}' is not a supported modifier.")
|
|
79
79
|
self._modifiers = modifiers
|
|
80
|
-
|
|
80
|
+
|
|
81
81
|
def __repr__(self) -> str:
|
|
82
82
|
"""Returns a string representation of the modifiers."""
|
|
83
83
|
return str(self._modifiers)
|
|
@@ -104,6 +104,9 @@ cdef class ModifierManager:
|
|
|
104
104
|
else USER_DEFAULTS._modifiers[modifier_key]
|
|
105
105
|
)
|
|
106
106
|
|
|
107
|
+
def __reduce__(self):
|
|
108
|
+
return ModifierManager, (self._modifiers, True)
|
|
109
|
+
|
|
107
110
|
cdef str get_default(self):
|
|
108
111
|
cdef str default = self.__default
|
|
109
112
|
if default is None:
|