ez-a-sync 0.32.22__cp310-cp310-macosx_11_0_arm64.whl → 0.32.24__cp310-cp310-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 (41) hide show
  1. a_sync/_smart.c +1266 -1194
  2. a_sync/_smart.cpython-310-darwin.so +0 -0
  3. a_sync/_smart.pyx +1 -0
  4. a_sync/a_sync/_descriptor.cpython-310-darwin.so +0 -0
  5. a_sync/a_sync/_flags.cpython-310-darwin.so +0 -0
  6. a_sync/a_sync/_helpers.cpython-310-darwin.so +0 -0
  7. a_sync/a_sync/_kwargs.cpython-310-darwin.so +0 -0
  8. a_sync/a_sync/abstract.cpython-310-darwin.so +0 -0
  9. a_sync/a_sync/base.cpython-310-darwin.so +0 -0
  10. a_sync/a_sync/flags.cpython-310-darwin.so +0 -0
  11. a_sync/a_sync/function.c +1964 -1962
  12. a_sync/a_sync/function.cpython-310-darwin.so +0 -0
  13. a_sync/a_sync/function.pyx +3 -1
  14. a_sync/a_sync/method.cpython-310-darwin.so +0 -0
  15. a_sync/a_sync/modifiers/manager.cpython-310-darwin.so +0 -0
  16. a_sync/a_sync/property.cpython-310-darwin.so +0 -0
  17. a_sync/async_property/cached.cpython-310-darwin.so +0 -0
  18. a_sync/async_property/proxy.cpython-310-darwin.so +0 -0
  19. a_sync/asyncio/as_completed.cpython-310-darwin.so +0 -0
  20. a_sync/asyncio/create_task.cpython-310-darwin.so +0 -0
  21. a_sync/asyncio/gather.cpython-310-darwin.so +0 -0
  22. a_sync/asyncio/igather.cpython-310-darwin.so +0 -0
  23. a_sync/asyncio/sleep.cpython-310-darwin.so +0 -0
  24. a_sync/debugging.cpython-310-darwin.so +0 -0
  25. a_sync/exceptions.c +480 -263
  26. a_sync/exceptions.cpython-310-darwin.so +0 -0
  27. a_sync/exceptions.pyx +3 -0
  28. a_sync/functools.cpython-310-darwin.so +0 -0
  29. a_sync/iter.cpython-310-darwin.so +0 -0
  30. a_sync/primitives/_debug.cpython-310-darwin.so +0 -0
  31. a_sync/primitives/_loggable.cpython-310-darwin.so +0 -0
  32. a_sync/primitives/locks/counter.cpython-310-darwin.so +0 -0
  33. a_sync/primitives/locks/event.cpython-310-darwin.so +0 -0
  34. a_sync/primitives/locks/prio_semaphore.cpython-310-darwin.so +0 -0
  35. a_sync/primitives/locks/semaphore.cpython-310-darwin.so +0 -0
  36. a_sync/utils/repr.cpython-310-darwin.so +0 -0
  37. {ez_a_sync-0.32.22.dist-info → ez_a_sync-0.32.24.dist-info}/METADATA +1 -1
  38. {ez_a_sync-0.32.22.dist-info → ez_a_sync-0.32.24.dist-info}/RECORD +41 -41
  39. {ez_a_sync-0.32.22.dist-info → ez_a_sync-0.32.24.dist-info}/WHEEL +0 -0
  40. {ez_a_sync-0.32.22.dist-info → ez_a_sync-0.32.24.dist-info}/licenses/LICENSE.txt +0 -0
  41. {ez_a_sync-0.32.22.dist-info → ez_a_sync-0.32.24.dist-info}/top_level.txt +0 -0
Binary file
a_sync/_smart.pyx CHANGED
@@ -10,6 +10,7 @@ import typing
10
10
  import weakref
11
11
  from logging import getLogger
12
12
  from types import TracebackType
13
+ from typing import Awaitable, Generator, Optional, Set
13
14
 
14
15
  cimport cython
15
16
  from cpython.object cimport PyObject
Binary file
Binary file
Binary file
Binary file