ez-a-sync 0.32.25__tar.gz → 0.32.26__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.26}/.github/workflows/black.yaml +3 -3
  2. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/.github/workflows/codeql.yaml +4 -4
  3. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/.github/workflows/docs.yaml +4 -4
  4. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/.github/workflows/mypy.yaml +2 -2
  5. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/.github/workflows/pytest.yaml +2 -2
  6. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/.github/workflows/release.yaml +13 -13
  7. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/PKG-INFO +18 -2
  8. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/_smart.c +5 -5
  9. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/function.c +14 -14
  10. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/method.c +6 -6
  11. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/property.c +357 -423
  12. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/property.pyx +2 -3
  13. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/functools.c +5 -5
  14. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/iter.c +16 -16
  15. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/primitives/_loggable.c +8 -8
  16. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/primitives/locks/prio_semaphore.c +10 -10
  17. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/primitives/locks/semaphore.c +7 -7
  18. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/ez_a_sync.egg-info/PKG-INFO +19 -3
  19. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/ez_a_sync.egg-info/SOURCES.txt +1 -0
  20. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/ez_a_sync.egg-info/requires.txt +1 -1
  21. ez_a_sync-0.32.26/pyproject.toml +5 -0
  22. ez_a_sync-0.32.26/renovate.json +6 -0
  23. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/requirements.txt +1 -1
  24. ez_a_sync-0.32.25/pyproject.toml +0 -5
  25. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/.coverage +0 -0
  26. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/.gitignore +0 -0
  27. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/.sourcery.yaml +0 -0
  28. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/LICENSE.txt +0 -0
  29. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/MANIFEST.in +0 -0
  30. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/Makefile +0 -0
  31. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/README.md +0 -0
  32. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/TODO +0 -0
  33. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/ENVIRONMENT_VARIABLES.py +0 -0
  34. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/__init__.pxd +0 -0
  35. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/__init__.py +0 -0
  36. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/_smart.pxd +0 -0
  37. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/_smart.pyi +0 -0
  38. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/_smart.pyx +0 -0
  39. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/_typing.py +0 -0
  40. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/__init__.py +0 -0
  41. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/_descriptor.c +2 -2
  42. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/_descriptor.pyi +0 -0
  43. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/_descriptor.pyx +0 -0
  44. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/_flags.c +0 -0
  45. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/_flags.pxd +0 -0
  46. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/_flags.pyx +0 -0
  47. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/_helpers.c +0 -0
  48. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/_helpers.pxd +0 -0
  49. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/_helpers.pyi +0 -0
  50. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/_helpers.pyx +0 -0
  51. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/_kwargs.c +0 -0
  52. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/_kwargs.pxd +0 -0
  53. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/_kwargs.pyx +0 -0
  54. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/_meta.py +0 -0
  55. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/abstract.c +0 -0
  56. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/abstract.pyi +0 -0
  57. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/abstract.pyx +0 -0
  58. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/base.c +0 -0
  59. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/base.pyi +0 -0
  60. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/base.pyx +0 -0
  61. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/config.py +0 -0
  62. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/decorator.py +0 -0
  63. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/flags.c +0 -0
  64. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/flags.pxd +0 -0
  65. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/flags.pyi +0 -0
  66. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/flags.pyx +0 -0
  67. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/function.pxd +0 -0
  68. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/function.pyi +0 -0
  69. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/function.pyx +0 -0
  70. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/method.pxd +0 -0
  71. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/method.pyi +0 -0
  72. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/method.pyx +0 -0
  73. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/modifiers/__init__.pxd +0 -0
  74. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/modifiers/__init__.py +0 -0
  75. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/modifiers/cache/__init__.py +0 -0
  76. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/modifiers/cache/memory.py +0 -0
  77. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/modifiers/limiter.py +0 -0
  78. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/modifiers/manager.c +0 -0
  79. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/modifiers/manager.pxd +0 -0
  80. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/modifiers/manager.pyi +0 -0
  81. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/modifiers/manager.pyx +0 -0
  82. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/modifiers/semaphores.py +0 -0
  83. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/property.pyi +0 -0
  84. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/a_sync/singleton.py +0 -0
  85. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/aliases.py +0 -0
  86. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/async_property/__init__.pxd +0 -0
  87. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/async_property/__init__.py +0 -0
  88. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/async_property/cached.c +0 -0
  89. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/async_property/cached.pxd +0 -0
  90. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/async_property/cached.pyi +0 -0
  91. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/async_property/cached.pyx +0 -0
  92. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/async_property/proxy.c +0 -0
  93. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/async_property/proxy.pxd +0 -0
  94. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/async_property/proxy.pyi +0 -0
  95. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/async_property/proxy.pyx +0 -0
  96. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/asyncio/__init__.pxd +0 -0
  97. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/asyncio/__init__.py +0 -0
  98. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/asyncio/as_completed.c +0 -0
  99. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/asyncio/as_completed.pxd +0 -0
  100. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/asyncio/as_completed.pyi +0 -0
  101. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/asyncio/as_completed.pyx +0 -0
  102. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/asyncio/create_task.c +0 -0
  103. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/asyncio/create_task.pxd +0 -0
  104. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/asyncio/create_task.pyi +0 -0
  105. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/asyncio/create_task.pyx +0 -0
  106. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/asyncio/gather.c +0 -0
  107. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/asyncio/gather.pyi +0 -0
  108. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/asyncio/gather.pyx +0 -0
  109. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/asyncio/igather.c +0 -0
  110. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/asyncio/igather.pxd +0 -0
  111. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/asyncio/igather.pyi +0 -0
  112. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/asyncio/igather.pyx +0 -0
  113. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/asyncio/sleep.c +0 -0
  114. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/asyncio/sleep.pyi +0 -0
  115. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/asyncio/sleep.pyx +0 -0
  116. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/debugging.c +0 -0
  117. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/debugging.pyi +0 -0
  118. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/debugging.pyx +0 -0
  119. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/exceptions.c +0 -0
  120. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/exceptions.pyi +0 -0
  121. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/exceptions.pyx +0 -0
  122. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/executor.py +0 -0
  123. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/functools.pxd +0 -0
  124. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/functools.pyi +0 -0
  125. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/functools.pyx +0 -0
  126. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/future.py +0 -0
  127. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/iter.pxd +0 -0
  128. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/iter.pyi +0 -0
  129. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/iter.pyx +0 -0
  130. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/primitives/__init__.pxd +0 -0
  131. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/primitives/__init__.py +0 -0
  132. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/primitives/_debug.c +2 -2
  133. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/primitives/_debug.pxd +0 -0
  134. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/primitives/_debug.pyi +0 -0
  135. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/primitives/_debug.pyx +0 -0
  136. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/primitives/_loggable.pxd +0 -0
  137. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/primitives/_loggable.pyi +0 -0
  138. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/primitives/_loggable.pyx +0 -0
  139. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/primitives/locks/__init__.pxd +0 -0
  140. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/primitives/locks/__init__.py +0 -0
  141. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/primitives/locks/counter.c +0 -0
  142. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/primitives/locks/counter.pxd +0 -0
  143. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/primitives/locks/counter.pyi +0 -0
  144. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/primitives/locks/counter.pyx +0 -0
  145. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/primitives/locks/event.c +0 -0
  146. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/primitives/locks/event.pxd +0 -0
  147. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/primitives/locks/event.pyi +0 -0
  148. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/primitives/locks/event.pyx +0 -0
  149. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/primitives/locks/prio_semaphore.pxd +0 -0
  150. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/primitives/locks/prio_semaphore.pyi +0 -0
  151. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/primitives/locks/prio_semaphore.pyx +0 -0
  152. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/primitives/locks/semaphore.pxd +0 -0
  153. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/primitives/locks/semaphore.pyi +0 -0
  154. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/primitives/locks/semaphore.pyx +0 -0
  155. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/primitives/queue.py +0 -0
  156. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/py.typed +0 -0
  157. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/sphinx/__init__.py +0 -0
  158. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/sphinx/ext.py +0 -0
  159. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/task.py +0 -0
  160. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/utils/__init__.py +0 -0
  161. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/utils/iterators.py +0 -0
  162. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/utils/repr.c +0 -0
  163. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/utils/repr.pyi +0 -0
  164. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/a_sync/utils/repr.pyx +0 -0
  165. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/docs/Makefile +0 -0
  166. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/docs/_build/html/_static/alabaster.css +0 -0
  167. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/docs/_build/html/_static/basic.css +0 -0
  168. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/docs/_build/html/_static/custom.css +0 -0
  169. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/docs/_build/html/_static/doctools.js +0 -0
  170. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/docs/_build/html/_static/documentation_options.js +0 -0
  171. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/docs/_build/html/_static/file.png +0 -0
  172. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/docs/_build/html/_static/language_data.js +0 -0
  173. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/docs/_build/html/_static/minus.png +0 -0
  174. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/docs/_build/html/_static/plus.png +0 -0
  175. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/docs/_build/html/_static/pygments.css +0 -0
  176. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/docs/_build/html/_static/searchtools.js +0 -0
  177. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/docs/_build/html/_static/sphinx_highlight.js +0 -0
  178. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/docs/conf.py +0 -0
  179. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/docs/index.rst +0 -0
  180. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/docs/make.bat +0 -0
  181. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/ez_a_sync.egg-info/dependency_links.txt +0 -0
  182. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/ez_a_sync.egg-info/not-zip-safe +0 -0
  183. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/ez_a_sync.egg-info/top_level.txt +0 -0
  184. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/include/pythoncapi_compat.h +0 -0
  185. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/requirements-dev.txt +0 -0
  186. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/setup.cfg +0 -0
  187. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/setup.py +0 -0
  188. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/tests/__init__.py +0 -0
  189. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/tests/a_sync/modifiers/test_apply_semaphore.py +0 -0
  190. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/tests/a_sync/test_abstract.py +0 -0
  191. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/tests/a_sync/test_base.py +0 -0
  192. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/tests/a_sync/test_cache.py +0 -0
  193. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/tests/a_sync/test_decorator.py +0 -0
  194. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/tests/a_sync/test_limiter.py +0 -0
  195. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/tests/a_sync/test_meta.py +0 -0
  196. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/tests/a_sync/test_modified.py +0 -0
  197. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/tests/a_sync/test_property.py +0 -0
  198. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/tests/a_sync/test_singleton.py +0 -0
  199. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/tests/asyncio/test_as_completed.py +0 -0
  200. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/tests/asyncio/test_create_task.py +0 -0
  201. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/tests/asyncio/test_gather.py +0 -0
  202. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/tests/asyncio/test_igather.py +0 -0
  203. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/tests/conftest.py +0 -0
  204. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/tests/executor.py +0 -0
  205. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/tests/fixtures.py +0 -0
  206. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/tests/iter/test_asyncgenfunc.py +0 -0
  207. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/tests/iter/test_iterables.py +0 -0
  208. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/tests/primitives/test_counter.py +0 -0
  209. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/tests/primitives/test_event.py +0 -0
  210. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/tests/primitives/test_prio_semaphore.py +0 -0
  211. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/tests/primitives/test_queue.py +0 -0
  212. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/tests/primitives/test_semaphore.py +0 -0
  213. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/tests/task/test_task.py +0 -0
  214. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/tests/task/test_task_mapping_views.py +0 -0
  215. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/tests/test_executor.py +0 -0
  216. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/tests/test_future.py +0 -0
  217. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/tests/test_helpers.py +0 -0
  218. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/tests/test_smart.py +0 -0
  219. {ez_a_sync-0.32.25 → ez_a_sync-0.32.26}/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@v4
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@v4
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@v4
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,7 +46,7 @@ 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
@@ -57,7 +57,7 @@ jobs:
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
63
  uses: actions/upload-pages-artifact@v3
@@ -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@v4
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@v4
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@v4
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@v4
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.26
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 -->
@@ -12647,7 +12647,7 @@ __Pyx_RefNannySetupContext("PyInit__smart", 0);
12647
12647
  (void)__Pyx_modinit_variable_import_code(__pyx_mstate);
12648
12648
  (void)__Pyx_modinit_function_import_code(__pyx_mstate);
12649
12649
  /*--- Execution code ---*/
12650
- __Pyx_TraceStartFunc("PyInit__smart", __pyx_f[0], 1, 0, 0, 0, __PYX_ERR(0, 1, __pyx_L1_error));
12650
+ __Pyx_TraceStartFunc("PyInit__smart", __pyx_f[0], 1, 1, 0, 0, __PYX_ERR(0, 1, __pyx_L1_error));
12651
12651
 
12652
12652
  /* "cfunc.to_py":65
12653
12653
  *
@@ -13344,7 +13344,7 @@ __Pyx_RefNannySetupContext("PyInit__smart", 0);
13344
13344
  * raise TypeError, "no default __reduce__ due to non-trivial __cinit__"
13345
13345
  * def __setstate_cython__(self, __pyx_state):
13346
13346
  */
13347
- __Pyx_TraceLine(1,1,0,__PYX_ERR(1, 1, __pyx_L1_error))
13347
+ __Pyx_TraceLine(1,0,0,__PYX_ERR(1, 1, __pyx_L1_error))
13348
13348
  __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
13349
  __Pyx_GOTREF(__pyx_t_5);
13350
13350
  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 +13855,12 @@ __Pyx_RefNannySetupContext("PyInit__smart", 0);
13855
13855
  * This module defines smart future and task utilities for the a_sync library.
13856
13856
  * These utilities provide enhanced functionality for managing asynchronous tasks and futures,
13857
13857
  */
13858
- __Pyx_TraceLine(1,0,0,__PYX_ERR(0, 1, __pyx_L1_error))
13858
+ __Pyx_TraceLine(1,1,0,__PYX_ERR(0, 1, __pyx_L1_error))
13859
13859
  __pyx_t_2 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 1, __pyx_L1_error)
13860
13860
  __Pyx_GOTREF(__pyx_t_2);
13861
13861
  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
13862
  __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
13863
- __Pyx_TraceReturnValue(Py_None, 0, 0, __PYX_ERR(0, 1, __pyx_L1_error));
13863
+ __Pyx_TraceReturnValue(Py_None, 1, 0, __PYX_ERR(0, 1, __pyx_L1_error));
13864
13864
  __Pyx_PyMonitoring_ExitScope(0);
13865
13865
 
13866
13866
  /*--- Wrapped vars code ---*/
@@ -13874,7 +13874,7 @@ __Pyx_RefNannySetupContext("PyInit__smart", 0);
13874
13874
  __Pyx_XDECREF(__pyx_t_8);
13875
13875
  __Pyx_XDECREF(__pyx_t_9);
13876
13876
  __Pyx_TraceException(__pyx_lineno, 0, 0);
13877
- __Pyx_TraceExceptionUnwind(0, 0);
13877
+ __Pyx_TraceExceptionUnwind(1, 0);
13878
13878
  if (__pyx_m) {
13879
13879
  if (__pyx_mstate->__pyx_d && stringtab_initialized) {
13880
13880
  __Pyx_AddTraceback("init a_sync._smart", __pyx_clineno, __pyx_lineno, __pyx_filename);
@@ -25364,7 +25364,7 @@ __Pyx_RefNannySetupContext("PyInit_function", 0);
25364
25364
  if (unlikely((__Pyx_modinit_variable_import_code(__pyx_mstate) < 0))) __PYX_ERR(0, 1, __pyx_L1_error)
25365
25365
  if (unlikely((__Pyx_modinit_function_import_code(__pyx_mstate) < 0))) __PYX_ERR(0, 1, __pyx_L1_error)
25366
25366
  /*--- Execution code ---*/
25367
- __Pyx_TraceStartFunc("PyInit_function", __pyx_f[0], 1, 7, 0, 0, __PYX_ERR(0, 1, __pyx_L1_error));
25367
+ __Pyx_TraceStartFunc("PyInit_function", __pyx_f[0], 1, 2, 0, 0, __PYX_ERR(0, 1, __pyx_L1_error));
25368
25368
 
25369
25369
  /* "cfunc.to_py":65
25370
25370
  *
@@ -26783,7 +26783,7 @@ __Pyx_RefNannySetupContext("PyInit_function", 0);
26783
26783
  * cdef tuple state
26784
26784
  * cdef object _dict
26785
26785
  */
26786
- __Pyx_TraceLine(1,5,0,__PYX_ERR(1, 1, __pyx_L1_error))
26786
+ __Pyx_TraceLine(1,4,0,__PYX_ERR(1, 1, __pyx_L1_error))
26787
26787
  __pyx_t_5 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_6a_sync_8function_14_ASyncFunction_45__reduce_cython__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_ASyncFunction___reduce_cython, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_a_sync_function, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[42])); if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 1, __pyx_L1_error)
26788
26788
  __Pyx_GOTREF(__pyx_t_5);
26789
26789
  if (__Pyx_SetItemOnTypeDict(__pyx_mstate_global->__pyx_ptype_6a_sync_6a_sync_8function__ASyncFunction, __pyx_mstate_global->__pyx_n_u_reduce_cython, __pyx_t_5) < 0) __PYX_ERR(1, 1, __pyx_L1_error)
@@ -26795,7 +26795,7 @@ __Pyx_RefNannySetupContext("PyInit_function", 0);
26795
26795
  * def __setstate_cython__(self, __pyx_state): # <<<<<<<<<<<<<<
26796
26796
  * __pyx_unpickle__ASyncFunction__set_state(self, __pyx_state)
26797
26797
  */
26798
- __Pyx_TraceLine(16,45,0,__PYX_ERR(1, 16, __pyx_L1_error))
26798
+ __Pyx_TraceLine(16,43,0,__PYX_ERR(1, 16, __pyx_L1_error))
26799
26799
  __pyx_t_5 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_6a_sync_8function_14_ASyncFunction_47__setstate_cython__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_ASyncFunction___setstate_cython, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_a_sync_function, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[43])); if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 16, __pyx_L1_error)
26800
26800
  __Pyx_GOTREF(__pyx_t_5);
26801
26801
  if (__Pyx_SetItemOnTypeDict(__pyx_mstate_global->__pyx_ptype_6a_sync_6a_sync_8function__ASyncFunction, __pyx_mstate_global->__pyx_n_u_setstate_cython, __pyx_t_5) < 0) __PYX_ERR(1, 16, __pyx_L1_error)
@@ -27307,7 +27307,7 @@ __Pyx_RefNannySetupContext("PyInit_function", 0);
27307
27307
  * raise TypeError, "no default __reduce__ due to non-trivial __cinit__"
27308
27308
  * def __setstate_cython__(self, __pyx_state):
27309
27309
  */
27310
- __Pyx_TraceLine(1,3,0,__PYX_ERR(1, 1, __pyx_L1_error))
27310
+ __Pyx_TraceLine(1,0,0,__PYX_ERR(1, 1, __pyx_L1_error))
27311
27311
  __pyx_t_3 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_6a_sync_8function_14ASyncDecorator_9__reduce_cython__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_ASyncDecorator___reduce_cython, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_a_sync_function, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[56])); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 1, __pyx_L1_error)
27312
27312
  __Pyx_GOTREF(__pyx_t_3);
27313
27313
  if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_reduce_cython, __pyx_t_3) < 0) __PYX_ERR(1, 1, __pyx_L1_error)
@@ -27319,7 +27319,7 @@ __Pyx_RefNannySetupContext("PyInit_function", 0);
27319
27319
  * def __setstate_cython__(self, __pyx_state): # <<<<<<<<<<<<<<
27320
27320
  * raise TypeError, "no default __reduce__ due to non-trivial __cinit__"
27321
27321
  */
27322
- __Pyx_TraceLine(3,12,0,__PYX_ERR(1, 3, __pyx_L1_error))
27322
+ __Pyx_TraceLine(3,11,0,__PYX_ERR(1, 3, __pyx_L1_error))
27323
27323
  __pyx_t_3 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_6a_sync_8function_14ASyncDecorator_11__setstate_cython__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_ASyncDecorator___setstate_cython, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_a_sync_function, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[57])); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 3, __pyx_L1_error)
27324
27324
  __Pyx_GOTREF(__pyx_t_3);
27325
27325
  if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_setstate_cython, __pyx_t_3) < 0) __PYX_ERR(1, 3, __pyx_L1_error)
@@ -27945,7 +27945,7 @@ __Pyx_RefNannySetupContext("PyInit_function", 0);
27945
27945
  * raise TypeError, "no default __reduce__ due to non-trivial __cinit__"
27946
27946
  * def __setstate_cython__(self, __pyx_state):
27947
27947
  */
27948
- __Pyx_TraceLine(1,2,0,__PYX_ERR(1, 1, __pyx_L1_error))
27948
+ __Pyx_TraceLine(1,3,0,__PYX_ERR(1, 1, __pyx_L1_error))
27949
27949
  __pyx_t_11 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_6a_sync_8function_25ASyncDecoratorSyncDefault_9__reduce_cython__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_ASyncDecoratorSyncDefault___redu, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_a_sync_function, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[76])); if (unlikely(!__pyx_t_11)) __PYX_ERR(1, 1, __pyx_L1_error)
27950
27950
  __Pyx_GOTREF(__pyx_t_11);
27951
27951
  if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_reduce_cython, __pyx_t_11) < 0) __PYX_ERR(1, 1, __pyx_L1_error)
@@ -27957,7 +27957,7 @@ __Pyx_RefNannySetupContext("PyInit_function", 0);
27957
27957
  * def __setstate_cython__(self, __pyx_state): # <<<<<<<<<<<<<<
27958
27958
  * raise TypeError, "no default __reduce__ due to non-trivial __cinit__"
27959
27959
  */
27960
- __Pyx_TraceLine(3,11,0,__PYX_ERR(1, 3, __pyx_L1_error))
27960
+ __Pyx_TraceLine(3,12,0,__PYX_ERR(1, 3, __pyx_L1_error))
27961
27961
  __pyx_t_11 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_6a_sync_8function_25ASyncDecoratorSyncDefault_11__setstate_cython__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_ASyncDecoratorSyncDefault___sets, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_a_sync_function, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[77])); if (unlikely(!__pyx_t_11)) __PYX_ERR(1, 3, __pyx_L1_error)
27962
27962
  __Pyx_GOTREF(__pyx_t_11);
27963
27963
  if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_setstate_cython, __pyx_t_11) < 0) __PYX_ERR(1, 3, __pyx_L1_error)
@@ -28079,7 +28079,7 @@ __Pyx_RefNannySetupContext("PyInit_function", 0);
28079
28079
  * cdef object __pyx_PickleError
28080
28080
  * cdef object __pyx_result
28081
28081
  */
28082
- __Pyx_TraceLine(1,0,0,__PYX_ERR(1, 1, __pyx_L1_error))
28082
+ __Pyx_TraceLine(1,5,0,__PYX_ERR(1, 1, __pyx_L1_error))
28083
28083
  __pyx_t_11 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_6a_sync_8function_1__pyx_unpickle__ModifiedMixin, 0, __pyx_mstate_global->__pyx_n_u_pyx_unpickle__ModifiedMixin, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_a_sync_function, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[85])); if (unlikely(!__pyx_t_11)) __PYX_ERR(1, 1, __pyx_L1_error)
28084
28084
  __Pyx_GOTREF(__pyx_t_11);
28085
28085
  if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_pyx_unpickle__ModifiedMixin, __pyx_t_11) < 0) __PYX_ERR(1, 1, __pyx_L1_error)
@@ -28092,7 +28092,7 @@ __Pyx_RefNannySetupContext("PyInit_function", 0);
28092
28092
  * __pyx_result._ModifiedMixin__await = __pyx_state[0]; __pyx_result._ModifiedMixin__default = __pyx_state[1]; __pyx_result.__wrapped__ = __pyx_state[2]; __pyx_result.modifiers = __pyx_state[3]
28093
28093
  * if len(__pyx_state) > 4 and hasattr(__pyx_result, '__dict__'):
28094
28094
  */
28095
- __Pyx_TraceLine(11,26,0,__PYX_ERR(1, 11, __pyx_L1_error))
28095
+ __Pyx_TraceLine(11,27,0,__PYX_ERR(1, 11, __pyx_L1_error))
28096
28096
 
28097
28097
 
28098
28098
  /* "(tree fragment)":1
@@ -28100,7 +28100,7 @@ __Pyx_RefNannySetupContext("PyInit_function", 0);
28100
28100
  * cdef object __pyx_PickleError
28101
28101
  * cdef object __pyx_result
28102
28102
  */
28103
- __Pyx_TraceLine(1,4,0,__PYX_ERR(1, 1, __pyx_L1_error))
28103
+ __Pyx_TraceLine(1,7,0,__PYX_ERR(1, 1, __pyx_L1_error))
28104
28104
  __pyx_t_11 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_6a_sync_8function_3__pyx_unpickle__ASyncFunction, 0, __pyx_mstate_global->__pyx_n_u_pyx_unpickle__ASyncFunction, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_a_sync_function, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[87])); if (unlikely(!__pyx_t_11)) __PYX_ERR(1, 1, __pyx_L1_error)
28105
28105
  __Pyx_GOTREF(__pyx_t_11);
28106
28106
  if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_pyx_unpickle__ASyncFunction, __pyx_t_11) < 0) __PYX_ERR(1, 1, __pyx_L1_error)
@@ -28113,7 +28113,7 @@ __Pyx_RefNannySetupContext("PyInit_function", 0);
28113
28113
  * __pyx_result._ASyncFunction__async_def = __pyx_state[0]; __pyx_result._ASyncFunction__async_def_cached = __pyx_state[1]; __pyx_result._ASyncFunction__async_wrap = __pyx_state[2]; __pyx_result._ASyncFunction__asyncified = __pyx_state[3]; __pyx_result._ASyncFunction__modified_fn = __pyx_state[4]; __pyx_result._ASyncFunction__sync_default = __pyx_state[5]; __pyx_result._ASyncFunction__sync_default_cached = __pyx_state[6]; __pyx_result._ASyncFunction__sync_wrap = __pyx_state[7]; __pyx_result._ModifiedMixin__await = __pyx_state[8]; __pyx_result._ModifiedMixin__default = __pyx_state[9]; __pyx_result.__wrapped__ = __pyx_state[10]; __pyx_result._fn = __pyx_state[11]; __pyx_result.modifiers = __pyx_state[12]
28114
28114
  * if len(__pyx_state) > 13 and hasattr(__pyx_result, '__dict__'):
28115
28115
  */
28116
- __Pyx_TraceLine(11,27,0,__PYX_ERR(1, 11, __pyx_L1_error))
28116
+ __Pyx_TraceLine(11,26,0,__PYX_ERR(1, 11, __pyx_L1_error))
28117
28117
 
28118
28118
 
28119
28119
  /* "a_sync/a_sync/function.pyx":1
@@ -28121,12 +28121,12 @@ __Pyx_RefNannySetupContext("PyInit_function", 0);
28121
28121
  * import inspect
28122
28122
  * import sys
28123
28123
  */
28124
- __Pyx_TraceLine(1,7,0,__PYX_ERR(0, 1, __pyx_L1_error))
28124
+ __Pyx_TraceLine(1,2,0,__PYX_ERR(0, 1, __pyx_L1_error))
28125
28125
  __pyx_t_11 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_11)) __PYX_ERR(0, 1, __pyx_L1_error)
28126
28126
  __Pyx_GOTREF(__pyx_t_11);
28127
28127
  if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_test, __pyx_t_11) < 0) __PYX_ERR(0, 1, __pyx_L1_error)
28128
28128
  __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0;
28129
- __Pyx_TraceReturnValue(Py_None, 7, 0, __PYX_ERR(0, 1, __pyx_L1_error));
28129
+ __Pyx_TraceReturnValue(Py_None, 2, 0, __PYX_ERR(0, 1, __pyx_L1_error));
28130
28130
  __Pyx_PyMonitoring_ExitScope(0);
28131
28131
 
28132
28132
  /*--- Wrapped vars code ---*/
@@ -28142,7 +28142,7 @@ __Pyx_RefNannySetupContext("PyInit_function", 0);
28142
28142
  __Pyx_XDECREF(__pyx_t_11);
28143
28143
  __Pyx_XDECREF(__pyx_t_12);
28144
28144
  __Pyx_TraceException(__pyx_lineno, 0, 0);
28145
- __Pyx_TraceExceptionUnwind(7, 0);
28145
+ __Pyx_TraceExceptionUnwind(2, 0);
28146
28146
  if (__pyx_m) {
28147
28147
  if (__pyx_mstate->__pyx_d && stringtab_initialized) {
28148
28148
  __Pyx_AddTraceback("init a_sync.a_sync.function", __pyx_clineno, __pyx_lineno, __pyx_filename);
@@ -18189,7 +18189,7 @@ __Pyx_RefNannySetupContext("PyInit_method", 0);
18189
18189
  (void)__Pyx_modinit_variable_import_code(__pyx_mstate);
18190
18190
  if (unlikely((__Pyx_modinit_function_import_code(__pyx_mstate) < 0))) __PYX_ERR(0, 1, __pyx_L1_error)
18191
18191
  /*--- Execution code ---*/
18192
- __Pyx_TraceStartFunc("PyInit_method", __pyx_f[0], 1, 2, 0, 0, __PYX_ERR(0, 1, __pyx_L1_error));
18192
+ __Pyx_TraceStartFunc("PyInit_method", __pyx_f[0], 1, 1, 0, 0, __PYX_ERR(0, 1, __pyx_L1_error));
18193
18193
 
18194
18194
  /* "a_sync/a_sync/method.pyx":11
18195
18195
  * # mypy: disable-error-code=valid-type
@@ -19771,7 +19771,7 @@ __Pyx_RefNannySetupContext("PyInit_method", 0);
19771
19771
  * cdef tuple state
19772
19772
  * cdef object _dict
19773
19773
  */
19774
- __Pyx_TraceLine(1,1,0,__PYX_ERR(2, 1, __pyx_L1_error))
19774
+ __Pyx_TraceLine(1,2,0,__PYX_ERR(2, 1, __pyx_L1_error))
19775
19775
  __pyx_t_9 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_6a_sync_6method_17_ASyncBoundMethod_24__reduce_cython__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_ASyncBoundMethod___reduce_cytho, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_a_sync_method, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[32])); if (unlikely(!__pyx_t_9)) __PYX_ERR(2, 1, __pyx_L1_error)
19776
19776
  __Pyx_GOTREF(__pyx_t_9);
19777
19777
  if (__Pyx_SetItemOnTypeDict(__pyx_mstate_global->__pyx_ptype_6a_sync_6a_sync_6method__ASyncBoundMethod, __pyx_mstate_global->__pyx_n_u_reduce_cython, __pyx_t_9) < 0) __PYX_ERR(2, 1, __pyx_L1_error)
@@ -19783,7 +19783,7 @@ __Pyx_RefNannySetupContext("PyInit_method", 0);
19783
19783
  * def __setstate_cython__(self, __pyx_state): # <<<<<<<<<<<<<<
19784
19784
  * __pyx_unpickle__ASyncBoundMethod__set_state(self, __pyx_state)
19785
19785
  */
19786
- __Pyx_TraceLine(16,12,0,__PYX_ERR(2, 16, __pyx_L1_error))
19786
+ __Pyx_TraceLine(16,13,0,__PYX_ERR(2, 16, __pyx_L1_error))
19787
19787
  __pyx_t_9 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_6a_sync_6method_17_ASyncBoundMethod_26__setstate_cython__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_ASyncBoundMethod___setstate_cyt, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_a_sync_method, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[33])); if (unlikely(!__pyx_t_9)) __PYX_ERR(2, 16, __pyx_L1_error)
19788
19788
  __Pyx_GOTREF(__pyx_t_9);
19789
19789
  if (__Pyx_SetItemOnTypeDict(__pyx_mstate_global->__pyx_ptype_6a_sync_6a_sync_6method__ASyncBoundMethod, __pyx_mstate_global->__pyx_n_u_setstate_cython, __pyx_t_9) < 0) __PYX_ERR(2, 16, __pyx_L1_error)
@@ -20594,7 +20594,7 @@ __Pyx_RefNannySetupContext("PyInit_method", 0);
20594
20594
  * This module provides classes for implementing dual-functional sync/async methods in Python.
20595
20595
  *
20596
20596
  */
20597
- __Pyx_TraceLine(1,2,0,__PYX_ERR(0, 1, __pyx_L1_error))
20597
+ __Pyx_TraceLine(1,1,0,__PYX_ERR(0, 1, __pyx_L1_error))
20598
20598
  __pyx_t_10 = __Pyx_PyDict_NewPresized(21); if (unlikely(!__pyx_t_10)) __PYX_ERR(0, 1, __pyx_L1_error)
20599
20599
  __Pyx_GOTREF(__pyx_t_10);
20600
20600
  if (PyDict_SetItem(__pyx_t_10, __pyx_mstate_global->__pyx_kp_u_ASyncMethodDescriptor___call___l, __pyx_mstate_global->__pyx_kp_u_Asynchronously_call_the_method) < 0) __PYX_ERR(0, 1, __pyx_L1_error)
@@ -20620,7 +20620,7 @@ __Pyx_RefNannySetupContext("PyInit_method", 0);
20620
20620
  if (PyDict_SetItem(__pyx_t_10, __pyx_mstate_global->__pyx_kp_u_ASyncBoundMethodAsyncDefault___c_2, __pyx_mstate_global->__pyx_kp_u_Call_the_bound_method_with_asyn) < 0) __PYX_ERR(0, 1, __pyx_L1_error)
20621
20621
  if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_test, __pyx_t_10) < 0) __PYX_ERR(0, 1, __pyx_L1_error)
20622
20622
  __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0;
20623
- __Pyx_TraceReturnValue(Py_None, 2, 0, __PYX_ERR(0, 1, __pyx_L1_error));
20623
+ __Pyx_TraceReturnValue(Py_None, 1, 0, __PYX_ERR(0, 1, __pyx_L1_error));
20624
20624
  __Pyx_PyMonitoring_ExitScope(0);
20625
20625
 
20626
20626
  /*--- Wrapped vars code ---*/
@@ -20636,7 +20636,7 @@ __Pyx_RefNannySetupContext("PyInit_method", 0);
20636
20636
  __Pyx_XDECREF(__pyx_t_10);
20637
20637
  __Pyx_XDECREF(__pyx_t_11);
20638
20638
  __Pyx_TraceException(__pyx_lineno, 0, 0);
20639
- __Pyx_TraceExceptionUnwind(2, 0);
20639
+ __Pyx_TraceExceptionUnwind(1, 0);
20640
20640
  if (__pyx_m) {
20641
20641
  if (__pyx_mstate->__pyx_d && stringtab_initialized) {
20642
20642
  __Pyx_AddTraceback("init a_sync.a_sync.method", __pyx_clineno, __pyx_lineno, __pyx_filename);