ez-a-sync 0.32.25__tar.gz → 0.32.27__tar.gz

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 (219) hide show
  1. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/.github/workflows/black.yaml +3 -3
  2. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/.github/workflows/codeql.yaml +4 -4
  3. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/.github/workflows/docs.yaml +6 -6
  4. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/.github/workflows/mypy.yaml +2 -2
  5. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/.github/workflows/pytest.yaml +2 -2
  6. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/.github/workflows/release.yaml +13 -13
  7. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/PKG-INFO +18 -2
  8. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/_smart.c +49 -34
  9. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/_descriptor.c +64 -49
  10. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/_flags.c +13 -10
  11. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/_helpers.c +62 -47
  12. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/_kwargs.c +33 -18
  13. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/abstract.c +18 -11
  14. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/base.c +168 -153
  15. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/flags.c +6 -3
  16. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/function.c +78 -63
  17. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/method.c +127 -112
  18. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/modifiers/manager.c +46 -31
  19. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/property.c +439 -490
  20. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/property.pyx +2 -3
  21. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/async_property/cached.c +52 -37
  22. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/async_property/proxy.c +24 -9
  23. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/asyncio/as_completed.c +21 -6
  24. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/asyncio/create_task.c +23 -8
  25. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/asyncio/gather.c +30 -15
  26. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/asyncio/igather.c +24 -9
  27. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/asyncio/sleep.c +19 -4
  28. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/debugging.c +45 -30
  29. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/exceptions.c +18 -11
  30. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/executor.py +44 -0
  31. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/functools.c +24 -9
  32. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/iter.c +87 -72
  33. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/_debug.c +52 -37
  34. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/_loggable.c +26 -11
  35. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/locks/counter.c +65 -50
  36. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/locks/event.c +61 -45
  37. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/locks/prio_semaphore.c +83 -68
  38. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/locks/semaphore.c +72 -57
  39. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/utils/repr.c +41 -26
  40. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/ez_a_sync.egg-info/PKG-INFO +19 -3
  41. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/ez_a_sync.egg-info/SOURCES.txt +1 -0
  42. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/ez_a_sync.egg-info/requires.txt +1 -1
  43. ez_a_sync-0.32.27/pyproject.toml +5 -0
  44. ez_a_sync-0.32.27/renovate.json +6 -0
  45. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/requirements.txt +1 -1
  46. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/executor.py +101 -0
  47. ez_a_sync-0.32.25/pyproject.toml +0 -5
  48. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/.coverage +0 -0
  49. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/.gitignore +0 -0
  50. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/.sourcery.yaml +0 -0
  51. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/LICENSE.txt +0 -0
  52. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/MANIFEST.in +0 -0
  53. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/Makefile +0 -0
  54. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/README.md +0 -0
  55. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/TODO +0 -0
  56. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/ENVIRONMENT_VARIABLES.py +0 -0
  57. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/__init__.pxd +0 -0
  58. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/__init__.py +0 -0
  59. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/_smart.pxd +0 -0
  60. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/_smart.pyi +0 -0
  61. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/_smart.pyx +0 -0
  62. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/_typing.py +0 -0
  63. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/__init__.py +0 -0
  64. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/_descriptor.pyi +0 -0
  65. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/_descriptor.pyx +0 -0
  66. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/_flags.pxd +0 -0
  67. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/_flags.pyx +0 -0
  68. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/_helpers.pxd +0 -0
  69. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/_helpers.pyi +0 -0
  70. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/_helpers.pyx +0 -0
  71. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/_kwargs.pxd +0 -0
  72. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/_kwargs.pyx +0 -0
  73. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/_meta.py +0 -0
  74. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/abstract.pyi +0 -0
  75. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/abstract.pyx +0 -0
  76. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/base.pyi +0 -0
  77. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/base.pyx +0 -0
  78. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/config.py +0 -0
  79. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/decorator.py +0 -0
  80. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/flags.pxd +0 -0
  81. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/flags.pyi +0 -0
  82. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/flags.pyx +0 -0
  83. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/function.pxd +0 -0
  84. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/function.pyi +0 -0
  85. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/function.pyx +0 -0
  86. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/method.pxd +0 -0
  87. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/method.pyi +0 -0
  88. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/method.pyx +0 -0
  89. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/modifiers/__init__.pxd +0 -0
  90. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/modifiers/__init__.py +0 -0
  91. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/modifiers/cache/__init__.py +0 -0
  92. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/modifiers/cache/memory.py +0 -0
  93. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/modifiers/limiter.py +0 -0
  94. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/modifiers/manager.pxd +0 -0
  95. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/modifiers/manager.pyi +0 -0
  96. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/modifiers/manager.pyx +0 -0
  97. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/modifiers/semaphores.py +0 -0
  98. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/property.pyi +0 -0
  99. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/singleton.py +0 -0
  100. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/aliases.py +0 -0
  101. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/async_property/__init__.pxd +0 -0
  102. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/async_property/__init__.py +0 -0
  103. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/async_property/cached.pxd +0 -0
  104. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/async_property/cached.pyi +0 -0
  105. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/async_property/cached.pyx +0 -0
  106. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/async_property/proxy.pxd +0 -0
  107. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/async_property/proxy.pyi +0 -0
  108. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/async_property/proxy.pyx +0 -0
  109. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/asyncio/__init__.pxd +0 -0
  110. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/asyncio/__init__.py +0 -0
  111. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/asyncio/as_completed.pxd +0 -0
  112. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/asyncio/as_completed.pyi +0 -0
  113. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/asyncio/as_completed.pyx +0 -0
  114. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/asyncio/create_task.pxd +0 -0
  115. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/asyncio/create_task.pyi +0 -0
  116. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/asyncio/create_task.pyx +0 -0
  117. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/asyncio/gather.pyi +0 -0
  118. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/asyncio/gather.pyx +0 -0
  119. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/asyncio/igather.pxd +0 -0
  120. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/asyncio/igather.pyi +0 -0
  121. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/asyncio/igather.pyx +0 -0
  122. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/asyncio/sleep.pyi +0 -0
  123. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/asyncio/sleep.pyx +0 -0
  124. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/debugging.pyi +0 -0
  125. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/debugging.pyx +0 -0
  126. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/exceptions.pyi +0 -0
  127. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/exceptions.pyx +0 -0
  128. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/functools.pxd +0 -0
  129. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/functools.pyi +0 -0
  130. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/functools.pyx +0 -0
  131. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/future.py +0 -0
  132. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/iter.pxd +0 -0
  133. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/iter.pyi +0 -0
  134. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/iter.pyx +0 -0
  135. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/__init__.pxd +0 -0
  136. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/__init__.py +0 -0
  137. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/_debug.pxd +0 -0
  138. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/_debug.pyi +0 -0
  139. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/_debug.pyx +0 -0
  140. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/_loggable.pxd +0 -0
  141. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/_loggable.pyi +0 -0
  142. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/_loggable.pyx +0 -0
  143. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/locks/__init__.pxd +0 -0
  144. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/locks/__init__.py +0 -0
  145. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/locks/counter.pxd +0 -0
  146. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/locks/counter.pyi +0 -0
  147. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/locks/counter.pyx +0 -0
  148. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/locks/event.pxd +0 -0
  149. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/locks/event.pyi +0 -0
  150. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/locks/event.pyx +0 -0
  151. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/locks/prio_semaphore.pxd +0 -0
  152. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/locks/prio_semaphore.pyi +0 -0
  153. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/locks/prio_semaphore.pyx +0 -0
  154. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/locks/semaphore.pxd +0 -0
  155. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/locks/semaphore.pyi +0 -0
  156. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/locks/semaphore.pyx +0 -0
  157. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/queue.py +0 -0
  158. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/py.typed +0 -0
  159. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/sphinx/__init__.py +0 -0
  160. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/sphinx/ext.py +0 -0
  161. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/task.py +0 -0
  162. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/utils/__init__.py +0 -0
  163. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/utils/iterators.py +0 -0
  164. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/utils/repr.pyi +0 -0
  165. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/utils/repr.pyx +0 -0
  166. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/docs/Makefile +0 -0
  167. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/docs/_build/html/_static/alabaster.css +0 -0
  168. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/docs/_build/html/_static/basic.css +0 -0
  169. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/docs/_build/html/_static/custom.css +0 -0
  170. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/docs/_build/html/_static/doctools.js +0 -0
  171. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/docs/_build/html/_static/documentation_options.js +0 -0
  172. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/docs/_build/html/_static/file.png +0 -0
  173. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/docs/_build/html/_static/language_data.js +0 -0
  174. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/docs/_build/html/_static/minus.png +0 -0
  175. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/docs/_build/html/_static/plus.png +0 -0
  176. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/docs/_build/html/_static/pygments.css +0 -0
  177. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/docs/_build/html/_static/searchtools.js +0 -0
  178. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/docs/_build/html/_static/sphinx_highlight.js +0 -0
  179. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/docs/conf.py +0 -0
  180. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/docs/index.rst +0 -0
  181. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/docs/make.bat +0 -0
  182. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/ez_a_sync.egg-info/dependency_links.txt +0 -0
  183. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/ez_a_sync.egg-info/not-zip-safe +0 -0
  184. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/ez_a_sync.egg-info/top_level.txt +0 -0
  185. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/include/pythoncapi_compat.h +0 -0
  186. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/requirements-dev.txt +0 -0
  187. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/setup.cfg +0 -0
  188. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/setup.py +0 -0
  189. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/__init__.py +0 -0
  190. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/a_sync/modifiers/test_apply_semaphore.py +0 -0
  191. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/a_sync/test_abstract.py +0 -0
  192. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/a_sync/test_base.py +0 -0
  193. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/a_sync/test_cache.py +0 -0
  194. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/a_sync/test_decorator.py +0 -0
  195. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/a_sync/test_limiter.py +0 -0
  196. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/a_sync/test_meta.py +0 -0
  197. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/a_sync/test_modified.py +0 -0
  198. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/a_sync/test_property.py +0 -0
  199. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/a_sync/test_singleton.py +0 -0
  200. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/asyncio/test_as_completed.py +0 -0
  201. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/asyncio/test_create_task.py +0 -0
  202. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/asyncio/test_gather.py +0 -0
  203. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/asyncio/test_igather.py +0 -0
  204. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/conftest.py +0 -0
  205. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/fixtures.py +0 -0
  206. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/iter/test_asyncgenfunc.py +0 -0
  207. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/iter/test_iterables.py +0 -0
  208. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/primitives/test_counter.py +0 -0
  209. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/primitives/test_event.py +0 -0
  210. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/primitives/test_prio_semaphore.py +0 -0
  211. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/primitives/test_queue.py +0 -0
  212. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/primitives/test_semaphore.py +0 -0
  213. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/task/test_task.py +0 -0
  214. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/task/test_task_mapping_views.py +0 -0
  215. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/test_executor.py +0 -0
  216. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/test_future.py +0 -0
  217. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/test_helpers.py +0 -0
  218. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/test_smart.py +0 -0
  219. {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/utils/test_repr.py +0 -0
@@ -15,14 +15,14 @@ jobs:
15
15
 
16
16
  steps:
17
17
  - name: Checkout code
18
- uses: actions/checkout@v3
18
+ uses: actions/checkout@v5
19
19
  with:
20
20
  ref: ${{ github.head_ref }} # Check out the PR branch
21
21
 
22
22
  - name: Set up Python
23
- uses: actions/setup-python@v4
23
+ uses: actions/setup-python@v5
24
24
  with:
25
- python-version: '3.12'
25
+ python-version: '3.13'
26
26
 
27
27
  - name: Install Black
28
28
  run: pip install black
@@ -46,11 +46,11 @@ jobs:
46
46
 
47
47
  steps:
48
48
  - name: Checkout repository
49
- uses: actions/checkout@v3
49
+ uses: actions/checkout@v5
50
50
 
51
51
  # Initializes the CodeQL tools for scanning.
52
52
  - name: Initialize CodeQL
53
- uses: github/codeql-action/init@v1
53
+ uses: github/codeql-action/init@v3
54
54
  with:
55
55
  languages: ${{ matrix.language }}
56
56
  # If you wish to specify custom queries, you can do so here or in a config file.
@@ -61,7 +61,7 @@ jobs:
61
61
  # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
62
62
  # If this step fails, then you should remove it and run the build manually (see below)
63
63
  - name: Autobuild
64
- uses: github/codeql-action/autobuild@v1
64
+ uses: github/codeql-action/autobuild@v3
65
65
 
66
66
  # ℹ️ Command-line programs to run using the OS shell.
67
67
  # 📚 https://git.io/JvXDl
@@ -75,4 +75,4 @@ jobs:
75
75
  # make release
76
76
 
77
77
  - name: Perform CodeQL Analysis
78
- uses: github/codeql-action/analyze@v1
78
+ uses: github/codeql-action/analyze@v3
@@ -20,10 +20,10 @@ jobs:
20
20
  runs-on: ubuntu-latest
21
21
  steps:
22
22
  - name: Check out code
23
- uses: actions/checkout@v2
23
+ uses: actions/checkout@v5
24
24
 
25
25
  - name: Set up Python
26
- uses: actions/setup-python@v2
26
+ uses: actions/setup-python@v5
27
27
  with:
28
28
  python-version: '3.10'
29
29
 
@@ -46,21 +46,21 @@ jobs:
46
46
  continue-on-error: true
47
47
 
48
48
  - name: Deploy to GitHub Pages
49
- uses: peaceiris/actions-gh-pages@v3
49
+ uses: peaceiris/actions-gh-pages@v4
50
50
  with:
51
51
  github_token: ${{ secrets.GITHUB_TOKEN }}
52
52
  publish_dir: ./docs/_build/html
53
53
 
54
54
  - name: Checkout
55
- uses: actions/checkout@v4
55
+ uses: actions/checkout@v5
56
56
  with:
57
57
  ref: gh-pages
58
58
 
59
59
  - name: Setup Pages
60
- uses: actions/configure-pages@v4
60
+ uses: actions/configure-pages@v5
61
61
 
62
62
  - name: Upload artifact
63
- uses: actions/upload-pages-artifact@v3
63
+ uses: actions/upload-pages-artifact@v4
64
64
  with:
65
65
  # Upload entire repository
66
66
  path: '.'
@@ -16,12 +16,12 @@ jobs:
16
16
  pyversion: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]
17
17
 
18
18
  steps:
19
- - uses: actions/checkout@v2
19
+ - uses: actions/checkout@v5
20
20
  with:
21
21
  fetch-depth: 0
22
22
 
23
23
  - name: Setup Python (faster than using Python container)
24
- uses: actions/setup-python@v2
24
+ uses: actions/setup-python@v5
25
25
  with:
26
26
  python-version: ${{ matrix.pyversion }}
27
27
 
@@ -32,10 +32,10 @@ jobs:
32
32
 
33
33
  steps:
34
34
  - name: Check out repository code
35
- uses: actions/checkout@v2
35
+ uses: actions/checkout@v5
36
36
 
37
37
  - name: Setup Python (faster than using Python container)
38
- uses: actions/setup-python@v2
38
+ uses: actions/setup-python@v5
39
39
  with:
40
40
  python-version: ${{ matrix.pyversion }}
41
41
 
@@ -79,14 +79,14 @@ jobs:
79
79
 
80
80
  steps:
81
81
  - name: Check out code
82
- uses: actions/checkout@v3
82
+ uses: actions/checkout@v5
83
83
  with:
84
84
  fetch-depth: 0
85
85
 
86
86
  - name: Set up Python
87
- uses: actions/setup-python@v4
87
+ uses: actions/setup-python@v5
88
88
  with:
89
- python-version: "3.11"
89
+ python-version: "3.13"
90
90
 
91
91
  - name: Install cibuildwheel
92
92
  run: |
@@ -117,14 +117,14 @@ jobs:
117
117
  runs-on: ubuntu-latest
118
118
  steps:
119
119
  - name: Check out code
120
- uses: actions/checkout@v3
120
+ uses: actions/checkout@v5
121
121
  with:
122
122
  fetch-depth: 0
123
123
 
124
124
  - name: Set up Python
125
- uses: actions/setup-python@v4
125
+ uses: actions/setup-python@v5
126
126
  with:
127
- python-version: "3.11"
127
+ python-version: "3.13"
128
128
 
129
129
  - name: Install dependencies
130
130
  run: |
@@ -139,43 +139,43 @@ jobs:
139
139
  # Download wheels built on each runner
140
140
  # ----------------------------------------------------
141
141
  - name: Download manylinux 64-bit wheels
142
- uses: actions/download-artifact@v4
142
+ uses: actions/download-artifact@v5
143
143
  with:
144
144
  name: "wheels-ubuntu-latest-manylinux-x64"
145
145
  path: wheelhouse/linux-many-x64
146
146
 
147
147
  - name: Download manylinux 32-bit wheels
148
- uses: actions/download-artifact@v4
148
+ uses: actions/download-artifact@v5
149
149
  with:
150
150
  name: "wheels-ubuntu-latest-manylinux-x86"
151
151
  path: wheelhouse/linux-many-x86
152
152
 
153
153
  - name: Download musllinux 64-bit wheels
154
- uses: actions/download-artifact@v4
154
+ uses: actions/download-artifact@v5
155
155
  with:
156
156
  name: "wheels-ubuntu-latest-musllinux-x64"
157
157
  path: wheelhouse/linux-musl-x64
158
158
 
159
159
  - name: Download musllinux 32-bit wheels
160
- uses: actions/download-artifact@v4
160
+ uses: actions/download-artifact@v5
161
161
  with:
162
162
  name: "wheels-ubuntu-latest-musllinux-x86"
163
163
  path: wheelhouse/linux-musl-x86
164
164
 
165
165
  - name: Download macOS wheels
166
- uses: actions/download-artifact@v4
166
+ uses: actions/download-artifact@v5
167
167
  with:
168
168
  name: "wheels-macos-latest"
169
169
  path: wheelhouse/macos
170
170
 
171
171
  - name: Download Windows 64-bit wheels
172
- uses: actions/download-artifact@v4
172
+ uses: actions/download-artifact@v5
173
173
  with:
174
174
  name: "wheels-windows-latest-x64"
175
175
  path: wheelhouse/windows-x64
176
176
 
177
177
  - name: Download Windows 32-bit wheels
178
- uses: actions/download-artifact@v4
178
+ uses: actions/download-artifact@v5
179
179
  with:
180
180
  name: "wheels-windows-latest-x86"
181
181
  path: wheelhouse/windows-x86
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: ez_a_sync
3
- Version: 0.32.25
3
+ Version: 0.32.27
4
4
  Summary: A library that makes it easy to define objects that can be used for both sync and async use cases.
5
5
  Home-page: https://github.com/BobTheBuidler/a-sync
6
6
  Author: BobTheBuidler
@@ -19,6 +19,22 @@ Classifier: Topic :: Software Development :: Libraries
19
19
  Requires-Python: >=3.8,<3.14
20
20
  Description-Content-Type: text/markdown
21
21
  License-File: LICENSE.txt
22
+ Requires-Dist: aiolimiter>=1
23
+ Requires-Dist: async_lru_threadsafe==2.0.4
24
+ Requires-Dist: async_property==0.2.2
25
+ Requires-Dist: typed_envs>=0.0.5
26
+ Requires-Dist: typing_extensions>=4.1.0
27
+ Dynamic: author
28
+ Dynamic: author-email
29
+ Dynamic: classifier
30
+ Dynamic: description
31
+ Dynamic: description-content-type
32
+ Dynamic: home-page
33
+ Dynamic: license
34
+ Dynamic: license-file
35
+ Dynamic: requires-dist
36
+ Dynamic: requires-python
37
+ Dynamic: summary
22
38
 
23
39
  ## Table of Contents
24
40
  <!-- TOC -->
@@ -1,4 +1,4 @@
1
- /* Generated by Cython 3.1.2 */
1
+ /* Generated by Cython 3.1.3 */
2
2
 
3
3
  /* BEGIN: Cython Metadata
4
4
  {
@@ -32,8 +32,8 @@ END: Cython Metadata */
32
32
  #elif PY_VERSION_HEX < 0x03080000
33
33
  #error Cython requires Python 3.8+.
34
34
  #else
35
- #define __PYX_ABI_VERSION "3_1_2"
36
- #define CYTHON_HEX_VERSION 0x030102F0
35
+ #define __PYX_ABI_VERSION "3_1_3"
36
+ #define CYTHON_HEX_VERSION 0x030103F0
37
37
  #define CYTHON_FUTURE_DIVISION 1
38
38
  /* CModulePreamble */
39
39
  #include <stddef.h>
@@ -396,6 +396,9 @@ END: Cython Metadata */
396
396
  enum { __pyx_check_sizeof_voidp = 1 / (int)(SIZEOF_VOID_P == sizeof(void*)) };
397
397
  #endif
398
398
  #endif
399
+ #ifndef CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME
400
+ #define CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME 100
401
+ #endif
399
402
  #ifndef __has_attribute
400
403
  #define __has_attribute(x) 0
401
404
  #endif
@@ -2845,22 +2848,22 @@ static int __Pyx__DelItemOnTypeDict(PyTypeObject *tp, PyObject *k);
2845
2848
  static int __Pyx_setup_reduce(PyObject* type_obj);
2846
2849
 
2847
2850
  /* TypeImport.proto */
2848
- #ifndef __PYX_HAVE_RT_ImportType_proto_3_1_2
2849
- #define __PYX_HAVE_RT_ImportType_proto_3_1_2
2851
+ #ifndef __PYX_HAVE_RT_ImportType_proto_3_1_3
2852
+ #define __PYX_HAVE_RT_ImportType_proto_3_1_3
2850
2853
  #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
2851
2854
  #include <stdalign.h>
2852
2855
  #endif
2853
2856
  #if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
2854
- #define __PYX_GET_STRUCT_ALIGNMENT_3_1_2(s) alignof(s)
2857
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_1_3(s) alignof(s)
2855
2858
  #else
2856
- #define __PYX_GET_STRUCT_ALIGNMENT_3_1_2(s) sizeof(void*)
2859
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_1_3(s) sizeof(void*)
2857
2860
  #endif
2858
- enum __Pyx_ImportType_CheckSize_3_1_2 {
2859
- __Pyx_ImportType_CheckSize_Error_3_1_2 = 0,
2860
- __Pyx_ImportType_CheckSize_Warn_3_1_2 = 1,
2861
- __Pyx_ImportType_CheckSize_Ignore_3_1_2 = 2
2861
+ enum __Pyx_ImportType_CheckSize_3_1_3 {
2862
+ __Pyx_ImportType_CheckSize_Error_3_1_3 = 0,
2863
+ __Pyx_ImportType_CheckSize_Warn_3_1_3 = 1,
2864
+ __Pyx_ImportType_CheckSize_Ignore_3_1_3 = 2
2862
2865
  };
2863
- static PyTypeObject *__Pyx_ImportType_3_1_2(PyObject* module, const char *module_name, const char *class_name, size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_1_2 check_size);
2866
+ static PyTypeObject *__Pyx_ImportType_3_1_3(PyObject* module, const char *module_name, const char *class_name, size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_1_3 check_size);
2864
2867
  #endif
2865
2868
 
2866
2869
  /* ImportDottedModule.proto */
@@ -7801,9 +7804,9 @@ static PyObject *__pyx_gb_6a_sync_6_smart_11SmartFuture_8generator1(__pyx_Corout
7801
7804
  __pyx_t_3 = __pyx_f_6a_sync_6_smart_current_task(__pyx_t_2); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 341, __pyx_L1_error)
7802
7805
  __Pyx_GOTREF(__pyx_t_3);
7803
7806
  __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
7807
+ __Pyx_INCREF(__pyx_t_3);
7804
7808
  __Pyx_GIVEREF(__pyx_t_3);
7805
7809
  __pyx_cur_scope->__pyx_v_task = __pyx_t_3;
7806
- __Pyx_INCREF(__pyx_t_3);
7807
7810
  __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely((__pyx_t_1 < 0))) __PYX_ERR(0, 341, __pyx_L1_error)
7808
7811
  __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
7809
7812
  if (__pyx_t_1) {
@@ -7966,9 +7969,9 @@ static PyObject *__pyx_gb_6a_sync_6_smart_11SmartFuture_8generator1(__pyx_Corout
7966
7969
  __Pyx_TraceLine(354,0,0,__PYX_ERR(0, 354, __pyx_L1_error))
7967
7970
  __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_cur_scope->__pyx_v_self, __pyx_mstate_global->__pyx_n_u_queue_2); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 354, __pyx_L1_error)
7968
7971
  __Pyx_GOTREF(__pyx_t_3);
7972
+ __Pyx_INCREF(__pyx_t_3);
7969
7973
  __Pyx_GIVEREF(__pyx_t_3);
7970
7974
  __pyx_cur_scope->__pyx_v_queue = __pyx_t_3;
7971
- __Pyx_INCREF(__pyx_t_3);
7972
7975
  __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely((__pyx_t_1 < 0))) __PYX_ERR(0, 354, __pyx_L1_error)
7973
7976
  __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
7974
7977
  if (__pyx_t_1) {
@@ -9115,9 +9118,9 @@ static PyObject *__pyx_gb_6a_sync_6_smart_9SmartTask_4generator2(__pyx_Coroutine
9115
9118
  __pyx_t_3 = __pyx_f_6a_sync_6_smart_current_task(__pyx_t_2); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 491, __pyx_L1_error)
9116
9119
  __Pyx_GOTREF(__pyx_t_3);
9117
9120
  __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
9121
+ __Pyx_INCREF(__pyx_t_3);
9118
9122
  __Pyx_GIVEREF(__pyx_t_3);
9119
9123
  __pyx_cur_scope->__pyx_v_task = __pyx_t_3;
9120
- __Pyx_INCREF(__pyx_t_3);
9121
9124
  __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely((__pyx_t_1 < 0))) __PYX_ERR(0, 491, __pyx_L1_error)
9122
9125
  __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
9123
9126
  if (__pyx_t_1) {
@@ -10130,8 +10133,8 @@ static PyObject *__pyx_f_6a_sync_6_smart_shield(PyObject *__pyx_v_arg, CYTHON_UN
10130
10133
  __Pyx_TraceLine(632,26,0,__PYX_ERR(0, 632, __pyx_L1_error))
10131
10134
  __pyx_t_1 = __Pyx_GetAttr3(__pyx_v_inner, __pyx_mstate_global->__pyx_n_u_waiters, Py_None); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 632, __pyx_L1_error)
10132
10135
  __Pyx_GOTREF(__pyx_t_1);
10133
- __pyx_v_waiters = __pyx_t_1;
10134
10136
  __Pyx_INCREF(__pyx_t_1);
10137
+ __pyx_v_waiters = __pyx_t_1;
10135
10138
  __pyx_t_5 = (__pyx_t_1 != Py_None);
10136
10139
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
10137
10140
  if (__pyx_t_5) {
@@ -12322,15 +12325,15 @@ static int __Pyx_modinit_type_import_code(__pyx_mstatetype *__pyx_mstate) {
12322
12325
  /*--- Type import code ---*/
12323
12326
  __pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 9, __pyx_L1_error)
12324
12327
  __Pyx_GOTREF(__pyx_t_1);
12325
- __pyx_mstate->__pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_1_2(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
12328
+ __pyx_mstate->__pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_1_3(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
12326
12329
  #if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
12327
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_2(PyTypeObject),
12330
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyTypeObject),
12328
12331
  #elif CYTHON_COMPILING_IN_LIMITED_API
12329
12332
  0, 0,
12330
12333
  #else
12331
- sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_2(PyHeapTypeObject),
12334
+ sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyHeapTypeObject),
12332
12335
  #endif
12333
- __Pyx_ImportType_CheckSize_Warn_3_1_2); if (!__pyx_mstate->__pyx_ptype_7cpython_4type_type) __PYX_ERR(2, 9, __pyx_L1_error)
12336
+ __Pyx_ImportType_CheckSize_Warn_3_1_3); if (!__pyx_mstate->__pyx_ptype_7cpython_4type_type) __PYX_ERR(2, 9, __pyx_L1_error)
12334
12337
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
12335
12338
  __Pyx_RefNannyFinishContext();
12336
12339
  return 0;
@@ -12647,7 +12650,7 @@ __Pyx_RefNannySetupContext("PyInit__smart", 0);
12647
12650
  (void)__Pyx_modinit_variable_import_code(__pyx_mstate);
12648
12651
  (void)__Pyx_modinit_function_import_code(__pyx_mstate);
12649
12652
  /*--- Execution code ---*/
12650
- __Pyx_TraceStartFunc("PyInit__smart", __pyx_f[0], 1, 0, 0, 0, __PYX_ERR(0, 1, __pyx_L1_error));
12653
+ __Pyx_TraceStartFunc("PyInit__smart", __pyx_f[0], 1, 1, 0, 0, __PYX_ERR(0, 1, __pyx_L1_error));
12651
12654
 
12652
12655
  /* "cfunc.to_py":65
12653
12656
  *
@@ -13344,7 +13347,7 @@ __Pyx_RefNannySetupContext("PyInit__smart", 0);
13344
13347
  * raise TypeError, "no default __reduce__ due to non-trivial __cinit__"
13345
13348
  * def __setstate_cython__(self, __pyx_state):
13346
13349
  */
13347
- __Pyx_TraceLine(1,1,0,__PYX_ERR(1, 1, __pyx_L1_error))
13350
+ __Pyx_TraceLine(1,0,0,__PYX_ERR(1, 1, __pyx_L1_error))
13348
13351
  __pyx_t_5 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_6_smart_7WeakSet_18__reduce_cython__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_WeakSet___reduce_cython, NULL, __pyx_mstate_global->__pyx_n_u_a_sync__smart, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[11])); if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 1, __pyx_L1_error)
13349
13352
  __Pyx_GOTREF(__pyx_t_5);
13350
13353
  if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_reduce_cython, __pyx_t_5) < 0) __PYX_ERR(1, 1, __pyx_L1_error)
@@ -13855,12 +13858,12 @@ __Pyx_RefNannySetupContext("PyInit__smart", 0);
13855
13858
  * This module defines smart future and task utilities for the a_sync library.
13856
13859
  * These utilities provide enhanced functionality for managing asynchronous tasks and futures,
13857
13860
  */
13858
- __Pyx_TraceLine(1,0,0,__PYX_ERR(0, 1, __pyx_L1_error))
13861
+ __Pyx_TraceLine(1,1,0,__PYX_ERR(0, 1, __pyx_L1_error))
13859
13862
  __pyx_t_2 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 1, __pyx_L1_error)
13860
13863
  __Pyx_GOTREF(__pyx_t_2);
13861
13864
  if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_test, __pyx_t_2) < 0) __PYX_ERR(0, 1, __pyx_L1_error)
13862
13865
  __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
13863
- __Pyx_TraceReturnValue(Py_None, 0, 0, __PYX_ERR(0, 1, __pyx_L1_error));
13866
+ __Pyx_TraceReturnValue(Py_None, 1, 0, __PYX_ERR(0, 1, __pyx_L1_error));
13864
13867
  __Pyx_PyMonitoring_ExitScope(0);
13865
13868
 
13866
13869
  /*--- Wrapped vars code ---*/
@@ -13874,7 +13877,7 @@ __Pyx_RefNannySetupContext("PyInit__smart", 0);
13874
13877
  __Pyx_XDECREF(__pyx_t_8);
13875
13878
  __Pyx_XDECREF(__pyx_t_9);
13876
13879
  __Pyx_TraceException(__pyx_lineno, 0, 0);
13877
- __Pyx_TraceExceptionUnwind(0, 0);
13880
+ __Pyx_TraceExceptionUnwind(1, 0);
13878
13881
  if (__pyx_m) {
13879
13882
  if (__pyx_mstate->__pyx_d && stringtab_initialized) {
13880
13883
  __Pyx_AddTraceback("init a_sync._smart", __pyx_clineno, __pyx_lineno, __pyx_filename);
@@ -15904,6 +15907,7 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
15904
15907
  changed = 1;
15905
15908
  }
15906
15909
  #endif // CYTHON_METH_FASTCALL
15910
+ #if !CYTHON_COMPILING_IN_PYPY
15907
15911
  else if (strcmp(memb->name, "__module__") == 0) {
15908
15912
  PyObject *descr;
15909
15913
  assert(memb->type == T_OBJECT);
@@ -15918,11 +15922,13 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
15918
15922
  }
15919
15923
  changed = 1;
15920
15924
  }
15925
+ #endif // !CYTHON_COMPILING_IN_PYPY
15921
15926
  }
15922
15927
  memb++;
15923
15928
  }
15924
15929
  }
15925
15930
  #endif // !CYTHON_COMPILING_IN_LIMITED_API
15931
+ #if !CYTHON_COMPILING_IN_PYPY
15926
15932
  slot = spec->slots;
15927
15933
  while (slot && slot->slot && slot->slot != Py_tp_getset)
15928
15934
  slot++;
@@ -15954,6 +15960,7 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
15954
15960
  ++getset;
15955
15961
  }
15956
15962
  }
15963
+ #endif // !CYTHON_COMPILING_IN_PYPY
15957
15964
  if (changed)
15958
15965
  PyType_Modified(type);
15959
15966
  #endif // PY_VERSION_HEX > 0x030900B1
@@ -16086,7 +16093,7 @@ bad:
16086
16093
  }
16087
16094
 
16088
16095
  /* CommonTypesMetaclass */
16089
- PyObject* __pyx_CommonTypesMetaclass_get_module(CYTHON_UNUSED PyObject *self, CYTHON_UNUSED void* context) {
16096
+ static PyObject* __pyx_CommonTypesMetaclass_get_module(CYTHON_UNUSED PyObject *self, CYTHON_UNUSED void* context) {
16090
16097
  return PyUnicode_FromString(__PYX_ABI_MODULE_NAME);
16091
16098
  }
16092
16099
  static PyGetSetDef __pyx_CommonTypesMetaclass_getset[] = {
@@ -17956,6 +17963,13 @@ try_unpack:
17956
17963
 
17957
17964
  /* PyObjectCallMethod0 */
17958
17965
  static PyObject* __Pyx_PyObject_CallMethod0(PyObject* obj, PyObject* method_name) {
17966
+ #if CYTHON_VECTORCALL && (__PYX_LIMITED_VERSION_HEX >= 0x030C0000 || (!CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX >= 0x03090000))
17967
+ PyObject *args[1] = {obj};
17968
+ (void) __Pyx_PyObject_GetMethod;
17969
+ (void) __Pyx_PyObject_CallOneArg;
17970
+ (void) __Pyx_PyObject_CallNoArg;
17971
+ return PyObject_VectorcallMethod(method_name, args, 1 | PY_VECTORCALL_ARGUMENTS_OFFSET, NULL);
17972
+ #else
17959
17973
  PyObject *method = NULL, *result = NULL;
17960
17974
  int is_method = __Pyx_PyObject_GetMethod(obj, method_name, &method);
17961
17975
  if (likely(is_method)) {
@@ -17968,6 +17982,7 @@ static PyObject* __Pyx_PyObject_CallMethod0(PyObject* obj, PyObject* method_name
17968
17982
  Py_DECREF(method);
17969
17983
  bad:
17970
17984
  return result;
17985
+ #endif
17971
17986
  }
17972
17987
 
17973
17988
  /* RaiseNeedMoreValuesToUnpack */
@@ -19248,10 +19263,10 @@ __PYX_GOOD:
19248
19263
  }
19249
19264
 
19250
19265
  /* TypeImport */
19251
- #ifndef __PYX_HAVE_RT_ImportType_3_1_2
19252
- #define __PYX_HAVE_RT_ImportType_3_1_2
19253
- static PyTypeObject *__Pyx_ImportType_3_1_2(PyObject *module, const char *module_name, const char *class_name,
19254
- size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_1_2 check_size)
19266
+ #ifndef __PYX_HAVE_RT_ImportType_3_1_3
19267
+ #define __PYX_HAVE_RT_ImportType_3_1_3
19268
+ static PyTypeObject *__Pyx_ImportType_3_1_3(PyObject *module, const char *module_name, const char *class_name,
19269
+ size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_1_3 check_size)
19255
19270
  {
19256
19271
  PyObject *result = 0;
19257
19272
  Py_ssize_t basicsize;
@@ -19307,7 +19322,7 @@ static PyTypeObject *__Pyx_ImportType_3_1_2(PyObject *module, const char *module
19307
19322
  module_name, class_name, size, basicsize+itemsize);
19308
19323
  goto bad;
19309
19324
  }
19310
- if (check_size == __Pyx_ImportType_CheckSize_Error_3_1_2 &&
19325
+ if (check_size == __Pyx_ImportType_CheckSize_Error_3_1_3 &&
19311
19326
  ((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
19312
19327
  PyErr_Format(PyExc_ValueError,
19313
19328
  "%.200s.%.200s size changed, may indicate binary incompatibility. "
@@ -19315,7 +19330,7 @@ static PyTypeObject *__Pyx_ImportType_3_1_2(PyObject *module, const char *module
19315
19330
  module_name, class_name, size, basicsize, basicsize+itemsize);
19316
19331
  goto bad;
19317
19332
  }
19318
- else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_1_2 && (size_t)basicsize > size) {
19333
+ else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_1_3 && (size_t)basicsize > size) {
19319
19334
  if (PyErr_WarnFormat(NULL, 0,
19320
19335
  "%.200s.%.200s size changed, may indicate binary incompatibility. "
19321
19336
  "Expected %zd from C header, got %zd from PyObject",
@@ -20973,7 +20988,7 @@ static CYTHON_INLINE PyObject *__Pyx_PyIter_Next_Plain(PyObject *iterator) {
20973
20988
  }
20974
20989
 
20975
20990
  /* PyObjectCallMethod1 */
20976
- #if !(CYTHON_VECTORCALL && __PYX_LIMITED_VERSION_HEX >= 0x030C0000)
20991
+ #if !(CYTHON_VECTORCALL && (__PYX_LIMITED_VERSION_HEX >= 0x030C0000 || (!CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX >= 0x03090000)))
20977
20992
  static PyObject* __Pyx__PyObject_CallMethod1(PyObject* method, PyObject* arg) {
20978
20993
  PyObject *result = __Pyx_PyObject_CallOneArg(method, arg);
20979
20994
  Py_DECREF(method);
@@ -20981,7 +20996,7 @@ static PyObject* __Pyx__PyObject_CallMethod1(PyObject* method, PyObject* arg) {
20981
20996
  }
20982
20997
  #endif
20983
20998
  static PyObject* __Pyx_PyObject_CallMethod1(PyObject* obj, PyObject* method_name, PyObject* arg) {
20984
- #if CYTHON_VECTORCALL && __PYX_LIMITED_VERSION_HEX >= 0x030C0000
20999
+ #if CYTHON_VECTORCALL && (__PYX_LIMITED_VERSION_HEX >= 0x030C0000 || (!CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX >= 0x03090000))
20985
21000
  PyObject *args[2] = {obj, arg};
20986
21001
  (void) __Pyx_PyObject_GetMethod;
20987
21002
  (void) __Pyx_PyObject_CallOneArg;