ez-a-sync 0.32.23__cp39-cp39-macosx_11_0_arm64.whl → 0.32.25__cp39-cp39-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 (39) hide show
  1. a_sync/_smart.cpython-39-darwin.so +0 -0
  2. a_sync/a_sync/_descriptor.cpython-39-darwin.so +0 -0
  3. a_sync/a_sync/_flags.cpython-39-darwin.so +0 -0
  4. a_sync/a_sync/_helpers.cpython-39-darwin.so +0 -0
  5. a_sync/a_sync/_kwargs.cpython-39-darwin.so +0 -0
  6. a_sync/a_sync/abstract.cpython-39-darwin.so +0 -0
  7. a_sync/a_sync/base.cpython-39-darwin.so +0 -0
  8. a_sync/a_sync/flags.cpython-39-darwin.so +0 -0
  9. a_sync/a_sync/function.c +1964 -1962
  10. a_sync/a_sync/function.cpython-39-darwin.so +0 -0
  11. a_sync/a_sync/function.pyx +3 -1
  12. a_sync/a_sync/method.cpython-39-darwin.so +0 -0
  13. a_sync/a_sync/modifiers/manager.cpython-39-darwin.so +0 -0
  14. a_sync/a_sync/property.cpython-39-darwin.so +0 -0
  15. a_sync/async_property/cached.cpython-39-darwin.so +0 -0
  16. a_sync/async_property/proxy.cpython-39-darwin.so +0 -0
  17. a_sync/asyncio/as_completed.cpython-39-darwin.so +0 -0
  18. a_sync/asyncio/create_task.c +5960 -6182
  19. a_sync/asyncio/create_task.cpython-39-darwin.so +0 -0
  20. a_sync/asyncio/create_task.pyx +38 -43
  21. a_sync/asyncio/gather.cpython-39-darwin.so +0 -0
  22. a_sync/asyncio/igather.cpython-39-darwin.so +0 -0
  23. a_sync/asyncio/sleep.cpython-39-darwin.so +0 -0
  24. a_sync/debugging.cpython-39-darwin.so +0 -0
  25. a_sync/exceptions.cpython-39-darwin.so +0 -0
  26. a_sync/functools.cpython-39-darwin.so +0 -0
  27. a_sync/iter.cpython-39-darwin.so +0 -0
  28. a_sync/primitives/_debug.cpython-39-darwin.so +0 -0
  29. a_sync/primitives/_loggable.cpython-39-darwin.so +0 -0
  30. a_sync/primitives/locks/counter.cpython-39-darwin.so +0 -0
  31. a_sync/primitives/locks/event.cpython-39-darwin.so +0 -0
  32. a_sync/primitives/locks/prio_semaphore.cpython-39-darwin.so +0 -0
  33. a_sync/primitives/locks/semaphore.cpython-39-darwin.so +0 -0
  34. a_sync/utils/repr.cpython-39-darwin.so +0 -0
  35. {ez_a_sync-0.32.23.dist-info → ez_a_sync-0.32.25.dist-info}/METADATA +1 -1
  36. {ez_a_sync-0.32.23.dist-info → ez_a_sync-0.32.25.dist-info}/RECORD +39 -39
  37. {ez_a_sync-0.32.23.dist-info → ez_a_sync-0.32.25.dist-info}/WHEEL +0 -0
  38. {ez_a_sync-0.32.23.dist-info → ez_a_sync-0.32.25.dist-info}/licenses/LICENSE.txt +0 -0
  39. {ez_a_sync-0.32.23.dist-info → ez_a_sync-0.32.25.dist-info}/top_level.txt +0 -0
Binary file
@@ -195,7 +195,9 @@ cdef inline void _validate_argspec(fn: Callable):
195
195
  warn("hopefully you know what you're doing...")
196
196
  return
197
197
  else:
198
- fn_args = argspec[0]
198
+ # python argspec is already a tuple but mypyc compiled functions
199
+ # return a list which me must coerce to tuple.
200
+ fn_args = tuple(argspec[0])
199
201
 
200
202
  for flag in fn_args:
201
203
  if flag in VIABLE_FLAGS:
Binary file
Binary file