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.
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/.github/workflows/black.yaml +3 -3
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/.github/workflows/codeql.yaml +4 -4
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/.github/workflows/docs.yaml +6 -6
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/.github/workflows/mypy.yaml +2 -2
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/.github/workflows/pytest.yaml +2 -2
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/.github/workflows/release.yaml +13 -13
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/PKG-INFO +18 -2
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/_smart.c +49 -34
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/_descriptor.c +64 -49
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/_flags.c +13 -10
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/_helpers.c +62 -47
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/_kwargs.c +33 -18
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/abstract.c +18 -11
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/base.c +168 -153
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/flags.c +6 -3
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/function.c +78 -63
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/method.c +127 -112
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/modifiers/manager.c +46 -31
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/property.c +439 -490
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/property.pyx +2 -3
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/async_property/cached.c +52 -37
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/async_property/proxy.c +24 -9
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/asyncio/as_completed.c +21 -6
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/asyncio/create_task.c +23 -8
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/asyncio/gather.c +30 -15
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/asyncio/igather.c +24 -9
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/asyncio/sleep.c +19 -4
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/debugging.c +45 -30
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/exceptions.c +18 -11
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/executor.py +44 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/functools.c +24 -9
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/iter.c +87 -72
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/_debug.c +52 -37
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/_loggable.c +26 -11
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/locks/counter.c +65 -50
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/locks/event.c +61 -45
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/locks/prio_semaphore.c +83 -68
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/locks/semaphore.c +72 -57
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/utils/repr.c +41 -26
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/ez_a_sync.egg-info/PKG-INFO +19 -3
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/ez_a_sync.egg-info/SOURCES.txt +1 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/ez_a_sync.egg-info/requires.txt +1 -1
- ez_a_sync-0.32.27/pyproject.toml +5 -0
- ez_a_sync-0.32.27/renovate.json +6 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/requirements.txt +1 -1
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/executor.py +101 -0
- ez_a_sync-0.32.25/pyproject.toml +0 -5
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/.coverage +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/.gitignore +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/.sourcery.yaml +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/LICENSE.txt +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/MANIFEST.in +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/Makefile +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/README.md +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/TODO +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/ENVIRONMENT_VARIABLES.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/__init__.pxd +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/__init__.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/_smart.pxd +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/_smart.pyi +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/_smart.pyx +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/_typing.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/__init__.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/_descriptor.pyi +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/_descriptor.pyx +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/_flags.pxd +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/_flags.pyx +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/_helpers.pxd +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/_helpers.pyi +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/_helpers.pyx +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/_kwargs.pxd +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/_kwargs.pyx +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/_meta.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/abstract.pyi +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/abstract.pyx +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/base.pyi +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/base.pyx +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/config.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/decorator.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/flags.pxd +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/flags.pyi +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/flags.pyx +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/function.pxd +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/function.pyi +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/function.pyx +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/method.pxd +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/method.pyi +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/method.pyx +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/modifiers/__init__.pxd +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/modifiers/__init__.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/modifiers/cache/__init__.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/modifiers/cache/memory.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/modifiers/limiter.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/modifiers/manager.pxd +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/modifiers/manager.pyi +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/modifiers/manager.pyx +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/modifiers/semaphores.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/property.pyi +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/a_sync/singleton.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/aliases.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/async_property/__init__.pxd +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/async_property/__init__.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/async_property/cached.pxd +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/async_property/cached.pyi +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/async_property/cached.pyx +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/async_property/proxy.pxd +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/async_property/proxy.pyi +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/async_property/proxy.pyx +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/asyncio/__init__.pxd +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/asyncio/__init__.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/asyncio/as_completed.pxd +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/asyncio/as_completed.pyi +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/asyncio/as_completed.pyx +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/asyncio/create_task.pxd +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/asyncio/create_task.pyi +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/asyncio/create_task.pyx +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/asyncio/gather.pyi +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/asyncio/gather.pyx +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/asyncio/igather.pxd +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/asyncio/igather.pyi +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/asyncio/igather.pyx +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/asyncio/sleep.pyi +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/asyncio/sleep.pyx +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/debugging.pyi +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/debugging.pyx +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/exceptions.pyi +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/exceptions.pyx +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/functools.pxd +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/functools.pyi +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/functools.pyx +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/future.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/iter.pxd +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/iter.pyi +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/iter.pyx +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/__init__.pxd +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/__init__.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/_debug.pxd +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/_debug.pyi +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/_debug.pyx +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/_loggable.pxd +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/_loggable.pyi +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/_loggable.pyx +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/locks/__init__.pxd +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/locks/__init__.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/locks/counter.pxd +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/locks/counter.pyi +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/locks/counter.pyx +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/locks/event.pxd +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/locks/event.pyi +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/locks/event.pyx +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/locks/prio_semaphore.pxd +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/locks/prio_semaphore.pyi +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/locks/prio_semaphore.pyx +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/locks/semaphore.pxd +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/locks/semaphore.pyi +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/locks/semaphore.pyx +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/primitives/queue.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/py.typed +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/sphinx/__init__.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/sphinx/ext.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/task.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/utils/__init__.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/utils/iterators.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/utils/repr.pyi +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/a_sync/utils/repr.pyx +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/docs/Makefile +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/docs/_build/html/_static/alabaster.css +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/docs/_build/html/_static/basic.css +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/docs/_build/html/_static/custom.css +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/docs/_build/html/_static/doctools.js +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/docs/_build/html/_static/documentation_options.js +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/docs/_build/html/_static/file.png +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/docs/_build/html/_static/language_data.js +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/docs/_build/html/_static/minus.png +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/docs/_build/html/_static/plus.png +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/docs/_build/html/_static/pygments.css +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/docs/_build/html/_static/searchtools.js +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/docs/_build/html/_static/sphinx_highlight.js +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/docs/conf.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/docs/index.rst +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/docs/make.bat +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/ez_a_sync.egg-info/dependency_links.txt +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/ez_a_sync.egg-info/not-zip-safe +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/ez_a_sync.egg-info/top_level.txt +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/include/pythoncapi_compat.h +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/requirements-dev.txt +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/setup.cfg +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/setup.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/__init__.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/a_sync/modifiers/test_apply_semaphore.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/a_sync/test_abstract.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/a_sync/test_base.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/a_sync/test_cache.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/a_sync/test_decorator.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/a_sync/test_limiter.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/a_sync/test_meta.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/a_sync/test_modified.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/a_sync/test_property.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/a_sync/test_singleton.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/asyncio/test_as_completed.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/asyncio/test_create_task.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/asyncio/test_gather.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/asyncio/test_igather.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/conftest.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/fixtures.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/iter/test_asyncgenfunc.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/iter/test_iterables.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/primitives/test_counter.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/primitives/test_event.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/primitives/test_prio_semaphore.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/primitives/test_queue.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/primitives/test_semaphore.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/task/test_task.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/task/test_task_mapping_views.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/test_executor.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/test_future.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/test_helpers.py +0 -0
- {ez_a_sync-0.32.25 → ez_a_sync-0.32.27}/tests/test_smart.py +0 -0
- {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@
|
|
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@
|
|
23
|
+
uses: actions/setup-python@v5
|
|
24
24
|
with:
|
|
25
|
-
python-version: '3.
|
|
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@
|
|
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@
|
|
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@
|
|
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@
|
|
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@
|
|
23
|
+
uses: actions/checkout@v5
|
|
24
24
|
|
|
25
25
|
- name: Set up Python
|
|
26
|
-
uses: actions/setup-python@
|
|
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@
|
|
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@
|
|
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@
|
|
60
|
+
uses: actions/configure-pages@v5
|
|
61
61
|
|
|
62
62
|
- name: Upload artifact
|
|
63
|
-
uses: actions/upload-pages-artifact@
|
|
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@
|
|
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@
|
|
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@
|
|
35
|
+
uses: actions/checkout@v5
|
|
36
36
|
|
|
37
37
|
- name: Setup Python (faster than using Python container)
|
|
38
|
-
uses: actions/setup-python@
|
|
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@
|
|
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@
|
|
87
|
+
uses: actions/setup-python@v5
|
|
88
88
|
with:
|
|
89
|
-
python-version: "3.
|
|
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@
|
|
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@
|
|
125
|
+
uses: actions/setup-python@v5
|
|
126
126
|
with:
|
|
127
|
-
python-version: "3.
|
|
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@
|
|
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@
|
|
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@
|
|
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@
|
|
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@
|
|
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@
|
|
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@
|
|
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
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: ez_a_sync
|
|
3
|
-
Version: 0.32.
|
|
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.
|
|
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 "
|
|
36
|
-
#define CYTHON_HEX_VERSION
|
|
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
|
|
2849
|
-
#define
|
|
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
|
|
2857
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_1_3(s) alignof(s)
|
|
2855
2858
|
#else
|
|
2856
|
-
#define
|
|
2859
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_1_3(s) sizeof(void*)
|
|
2857
2860
|
#endif
|
|
2858
|
-
enum
|
|
2859
|
-
|
|
2860
|
-
|
|
2861
|
-
|
|
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 *
|
|
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 =
|
|
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),
|
|
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),
|
|
12334
|
+
sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_3(PyHeapTypeObject),
|
|
12332
12335
|
#endif
|
|
12333
|
-
|
|
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,
|
|
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,
|
|
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,
|
|
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,
|
|
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(
|
|
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
|
|
19252
|
-
#define
|
|
19253
|
-
static PyTypeObject *
|
|
19254
|
-
size_t size, size_t alignment, enum
|
|
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 ==
|
|
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 ==
|
|
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;
|