ez-a-sync 0.32.10__cp313-cp313-macosx_11_0_arm64.whl → 0.32.12__cp313-cp313-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.

Files changed (50) hide show
  1. a_sync/_smart.c +1431 -1560
  2. a_sync/_smart.cpython-313-darwin.so +0 -0
  3. a_sync/_smart.pyx +28 -16
  4. a_sync/a_sync/_descriptor.cpython-313-darwin.so +0 -0
  5. a_sync/a_sync/_flags.cpython-313-darwin.so +0 -0
  6. a_sync/a_sync/_helpers.cpython-313-darwin.so +0 -0
  7. a_sync/a_sync/_kwargs.cpython-313-darwin.so +0 -0
  8. a_sync/a_sync/abstract.cpython-313-darwin.so +0 -0
  9. a_sync/a_sync/base.cpython-313-darwin.so +0 -0
  10. a_sync/a_sync/flags.cpython-313-darwin.so +0 -0
  11. a_sync/a_sync/function.cpython-313-darwin.so +0 -0
  12. a_sync/a_sync/method.cpython-313-darwin.so +0 -0
  13. a_sync/a_sync/modifiers/manager.c +614 -937
  14. a_sync/a_sync/modifiers/manager.cpython-313-darwin.so +0 -0
  15. a_sync/a_sync/modifiers/manager.pyx +4 -1
  16. a_sync/a_sync/property.c +250 -244
  17. a_sync/a_sync/property.cpython-313-darwin.so +0 -0
  18. a_sync/a_sync/property.pyx +4 -4
  19. a_sync/async_property/cached.cpython-313-darwin.so +0 -0
  20. a_sync/async_property/proxy.cpython-313-darwin.so +0 -0
  21. a_sync/asyncio/as_completed.cpython-313-darwin.so +0 -0
  22. a_sync/asyncio/create_task.c +735 -579
  23. a_sync/asyncio/create_task.cpython-313-darwin.so +0 -0
  24. a_sync/asyncio/create_task.pyx +7 -4
  25. a_sync/asyncio/gather.cpython-313-darwin.so +0 -0
  26. a_sync/asyncio/igather.cpython-313-darwin.so +0 -0
  27. a_sync/asyncio/sleep.cpython-313-darwin.so +0 -0
  28. a_sync/debugging.cpython-313-darwin.so +0 -0
  29. a_sync/exceptions.cpython-313-darwin.so +0 -0
  30. a_sync/functools.cpython-313-darwin.so +0 -0
  31. a_sync/iter.cpython-313-darwin.so +0 -0
  32. a_sync/primitives/_debug.cpython-313-darwin.so +0 -0
  33. a_sync/primitives/_loggable.cpython-313-darwin.so +0 -0
  34. a_sync/primitives/locks/counter.cpython-313-darwin.so +0 -0
  35. a_sync/primitives/locks/event.c +426 -428
  36. a_sync/primitives/locks/event.cpython-313-darwin.so +0 -0
  37. a_sync/primitives/locks/event.pyx +3 -1
  38. a_sync/primitives/locks/prio_semaphore.c +2623 -1503
  39. a_sync/primitives/locks/prio_semaphore.cpython-313-darwin.so +0 -0
  40. a_sync/primitives/locks/prio_semaphore.pxd +9 -8
  41. a_sync/primitives/locks/prio_semaphore.pyx +65 -22
  42. a_sync/primitives/locks/semaphore.c +1048 -1051
  43. a_sync/primitives/locks/semaphore.cpython-313-darwin.so +0 -0
  44. a_sync/primitives/locks/semaphore.pyx +4 -2
  45. a_sync/utils/repr.cpython-313-darwin.so +0 -0
  46. {ez_a_sync-0.32.10.dist-info → ez_a_sync-0.32.12.dist-info}/METADATA +1 -1
  47. {ez_a_sync-0.32.10.dist-info → ez_a_sync-0.32.12.dist-info}/RECORD +50 -50
  48. {ez_a_sync-0.32.10.dist-info → ez_a_sync-0.32.12.dist-info}/WHEEL +0 -0
  49. {ez_a_sync-0.32.10.dist-info → ez_a_sync-0.32.12.dist-info}/licenses/LICENSE.txt +0 -0
  50. {ez_a_sync-0.32.10.dist-info → ez_a_sync-0.32.12.dist-info}/top_level.txt +0 -0
@@ -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: