ez-a-sync 0.32.24__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.
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/.github/workflows/black.yaml +3 -3
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/.github/workflows/codeql.yaml +4 -4
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/.github/workflows/docs.yaml +4 -4
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/.github/workflows/mypy.yaml +2 -2
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/.github/workflows/pytest.yaml +2 -2
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/.github/workflows/release.yaml +13 -13
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/PKG-INFO +18 -2
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/_smart.c +5 -5
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/function.c +14 -14
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/method.c +5 -5
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/property.c +357 -423
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/property.pyx +2 -3
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/async_property/proxy.c +1 -1
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/asyncio/create_task.c +5456 -5688
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/asyncio/create_task.pyx +38 -43
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/functools.c +5 -5
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/iter.c +16 -16
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/primitives/_debug.c +6 -6
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/primitives/_loggable.c +2 -2
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/primitives/locks/counter.c +5 -5
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/primitives/locks/event.c +5 -5
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/primitives/locks/prio_semaphore.c +13 -13
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/primitives/locks/semaphore.c +8 -8
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/ez_a_sync.egg-info/PKG-INFO +19 -3
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/ez_a_sync.egg-info/SOURCES.txt +1 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/ez_a_sync.egg-info/requires.txt +1 -1
- ez_a_sync-0.32.26/pyproject.toml +5 -0
- ez_a_sync-0.32.26/renovate.json +6 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/requirements.txt +1 -1
- ez_a_sync-0.32.24/pyproject.toml +0 -5
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/.coverage +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/.gitignore +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/.sourcery.yaml +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/LICENSE.txt +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/MANIFEST.in +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/Makefile +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/README.md +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/TODO +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/ENVIRONMENT_VARIABLES.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/__init__.pxd +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/__init__.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/_smart.pxd +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/_smart.pyi +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/_smart.pyx +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/_typing.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/__init__.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/_descriptor.c +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/_descriptor.pyi +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/_descriptor.pyx +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/_flags.c +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/_flags.pxd +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/_flags.pyx +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/_helpers.c +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/_helpers.pxd +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/_helpers.pyi +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/_helpers.pyx +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/_kwargs.c +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/_kwargs.pxd +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/_kwargs.pyx +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/_meta.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/abstract.c +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/abstract.pyi +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/abstract.pyx +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/base.c +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/base.pyi +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/base.pyx +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/config.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/decorator.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/flags.c +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/flags.pxd +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/flags.pyi +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/flags.pyx +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/function.pxd +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/function.pyi +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/function.pyx +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/method.pxd +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/method.pyi +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/method.pyx +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/modifiers/__init__.pxd +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/modifiers/__init__.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/modifiers/cache/__init__.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/modifiers/cache/memory.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/modifiers/limiter.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/modifiers/manager.c +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/modifiers/manager.pxd +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/modifiers/manager.pyi +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/modifiers/manager.pyx +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/modifiers/semaphores.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/property.pyi +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/a_sync/singleton.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/aliases.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/async_property/__init__.pxd +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/async_property/__init__.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/async_property/cached.c +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/async_property/cached.pxd +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/async_property/cached.pyi +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/async_property/cached.pyx +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/async_property/proxy.pxd +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/async_property/proxy.pyi +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/async_property/proxy.pyx +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/asyncio/__init__.pxd +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/asyncio/__init__.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/asyncio/as_completed.c +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/asyncio/as_completed.pxd +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/asyncio/as_completed.pyi +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/asyncio/as_completed.pyx +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/asyncio/create_task.pxd +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/asyncio/create_task.pyi +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/asyncio/gather.c +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/asyncio/gather.pyi +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/asyncio/gather.pyx +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/asyncio/igather.c +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/asyncio/igather.pxd +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/asyncio/igather.pyi +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/asyncio/igather.pyx +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/asyncio/sleep.c +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/asyncio/sleep.pyi +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/asyncio/sleep.pyx +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/debugging.c +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/debugging.pyi +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/debugging.pyx +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/exceptions.c +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/exceptions.pyi +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/exceptions.pyx +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/executor.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/functools.pxd +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/functools.pyi +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/functools.pyx +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/future.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/iter.pxd +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/iter.pyi +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/iter.pyx +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/primitives/__init__.pxd +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/primitives/__init__.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/primitives/_debug.pxd +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/primitives/_debug.pyi +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/primitives/_debug.pyx +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/primitives/_loggable.pxd +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/primitives/_loggable.pyi +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/primitives/_loggable.pyx +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/primitives/locks/__init__.pxd +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/primitives/locks/__init__.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/primitives/locks/counter.pxd +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/primitives/locks/counter.pyi +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/primitives/locks/counter.pyx +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/primitives/locks/event.pxd +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/primitives/locks/event.pyi +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/primitives/locks/event.pyx +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/primitives/locks/prio_semaphore.pxd +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/primitives/locks/prio_semaphore.pyi +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/primitives/locks/prio_semaphore.pyx +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/primitives/locks/semaphore.pxd +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/primitives/locks/semaphore.pyi +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/primitives/locks/semaphore.pyx +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/primitives/queue.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/py.typed +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/sphinx/__init__.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/sphinx/ext.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/task.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/utils/__init__.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/utils/iterators.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/utils/repr.c +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/utils/repr.pyi +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/a_sync/utils/repr.pyx +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/docs/Makefile +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/docs/_build/html/_static/alabaster.css +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/docs/_build/html/_static/basic.css +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/docs/_build/html/_static/custom.css +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/docs/_build/html/_static/doctools.js +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/docs/_build/html/_static/documentation_options.js +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/docs/_build/html/_static/file.png +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/docs/_build/html/_static/language_data.js +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/docs/_build/html/_static/minus.png +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/docs/_build/html/_static/plus.png +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/docs/_build/html/_static/pygments.css +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/docs/_build/html/_static/searchtools.js +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/docs/_build/html/_static/sphinx_highlight.js +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/docs/conf.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/docs/index.rst +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/docs/make.bat +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/ez_a_sync.egg-info/dependency_links.txt +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/ez_a_sync.egg-info/not-zip-safe +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/ez_a_sync.egg-info/top_level.txt +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/include/pythoncapi_compat.h +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/requirements-dev.txt +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/setup.cfg +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/setup.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/tests/__init__.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/tests/a_sync/modifiers/test_apply_semaphore.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/tests/a_sync/test_abstract.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/tests/a_sync/test_base.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/tests/a_sync/test_cache.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/tests/a_sync/test_decorator.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/tests/a_sync/test_limiter.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/tests/a_sync/test_meta.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/tests/a_sync/test_modified.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/tests/a_sync/test_property.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/tests/a_sync/test_singleton.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/tests/asyncio/test_as_completed.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/tests/asyncio/test_create_task.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/tests/asyncio/test_gather.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/tests/asyncio/test_igather.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/tests/conftest.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/tests/executor.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/tests/fixtures.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/tests/iter/test_asyncgenfunc.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/tests/iter/test_iterables.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/tests/primitives/test_counter.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/tests/primitives/test_event.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/tests/primitives/test_prio_semaphore.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/tests/primitives/test_queue.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/tests/primitives/test_semaphore.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/tests/task/test_task.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/tests/task/test_task_mapping_views.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/tests/test_executor.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/tests/test_future.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/tests/test_helpers.py +0 -0
- {ez_a_sync-0.32.24 → ez_a_sync-0.32.26}/tests/test_smart.py +0 -0
- {ez_a_sync-0.32.24 → 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@
|
|
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@
|
|
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@v4
|
|
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@v4
|
|
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,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@
|
|
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@
|
|
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@
|
|
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@
|
|
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@v4
|
|
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@v4
|
|
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@v4
|
|
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.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,
|
|
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,
|
|
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,
|
|
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,
|
|
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(
|
|
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,
|
|
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
|
*
|
|
@@ -26059,7 +26059,7 @@ __Pyx_RefNannySetupContext("PyInit_function", 0);
|
|
|
26059
26059
|
* cdef tuple state
|
|
26060
26060
|
* cdef object _dict
|
|
26061
26061
|
*/
|
|
26062
|
-
__Pyx_TraceLine(1,
|
|
26062
|
+
__Pyx_TraceLine(1,1,0,__PYX_ERR(1, 1, __pyx_L1_error))
|
|
26063
26063
|
__pyx_t_5 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_6a_sync_8function_14_ModifiedMixin_1__reduce_cython__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_ModifiedMixin___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[10])); if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 1, __pyx_L1_error)
|
|
26064
26064
|
__Pyx_GOTREF(__pyx_t_5);
|
|
26065
26065
|
if (__Pyx_SetItemOnTypeDict(__pyx_mstate_global->__pyx_ptype_6a_sync_6a_sync_8function__ModifiedMixin, __pyx_mstate_global->__pyx_n_u_reduce_cython, __pyx_t_5) < 0) __PYX_ERR(1, 1, __pyx_L1_error)
|
|
@@ -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,
|
|
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,
|
|
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,
|
|
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,
|
|
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)
|
|
@@ -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,
|
|
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)
|
|
@@ -28046,7 +28046,7 @@ __Pyx_RefNannySetupContext("PyInit_function", 0);
|
|
|
28046
28046
|
* raise TypeError, "no default __reduce__ due to non-trivial __cinit__"
|
|
28047
28047
|
* def __setstate_cython__(self, __pyx_state):
|
|
28048
28048
|
*/
|
|
28049
|
-
__Pyx_TraceLine(1,
|
|
28049
|
+
__Pyx_TraceLine(1,6,0,__PYX_ERR(1, 1, __pyx_L1_error))
|
|
28050
28050
|
__pyx_t_11 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_6a_sync_8function_26ASyncDecoratorAsyncDefault_9__reduce_cython__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_ASyncDecoratorAsyncDefault___red, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_a_sync_function, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[82])); if (unlikely(!__pyx_t_11)) __PYX_ERR(1, 1, __pyx_L1_error)
|
|
28051
28051
|
__Pyx_GOTREF(__pyx_t_11);
|
|
28052
28052
|
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)
|
|
@@ -28058,7 +28058,7 @@ __Pyx_RefNannySetupContext("PyInit_function", 0);
|
|
|
28058
28058
|
* def __setstate_cython__(self, __pyx_state): # <<<<<<<<<<<<<<
|
|
28059
28059
|
* raise TypeError, "no default __reduce__ due to non-trivial __cinit__"
|
|
28060
28060
|
*/
|
|
28061
|
-
__Pyx_TraceLine(3,
|
|
28061
|
+
__Pyx_TraceLine(3,10,0,__PYX_ERR(1, 3, __pyx_L1_error))
|
|
28062
28062
|
__pyx_t_11 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_6a_sync_8function_26ASyncDecoratorAsyncDefault_11__setstate_cython__, __Pyx_CYFUNCTION_CCLASS, __pyx_mstate_global->__pyx_n_u_ASyncDecoratorAsyncDefault___set, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_a_sync_function, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[83])); if (unlikely(!__pyx_t_11)) __PYX_ERR(1, 3, __pyx_L1_error)
|
|
28063
28063
|
__Pyx_GOTREF(__pyx_t_11);
|
|
28064
28064
|
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,
|
|
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)
|
|
@@ -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,
|
|
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)
|
|
@@ -28121,12 +28121,12 @@ __Pyx_RefNannySetupContext("PyInit_function", 0);
|
|
|
28121
28121
|
* import inspect
|
|
28122
28122
|
* import sys
|
|
28123
28123
|
*/
|
|
28124
|
-
__Pyx_TraceLine(1,
|
|
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,
|
|
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(
|
|
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,
|
|
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
|
|
@@ -20573,7 +20573,7 @@ __Pyx_RefNannySetupContext("PyInit_method", 0);
|
|
|
20573
20573
|
* cdef object __pyx_PickleError
|
|
20574
20574
|
* cdef object __pyx_result
|
|
20575
20575
|
*/
|
|
20576
|
-
__Pyx_TraceLine(1,
|
|
20576
|
+
__Pyx_TraceLine(1,0,0,__PYX_ERR(2, 1, __pyx_L1_error))
|
|
20577
20577
|
__pyx_t_10 = __Pyx_CyFunction_New(&__pyx_mdef_6a_sync_6a_sync_6method_1__pyx_unpickle__ASyncBoundMethod, 0, __pyx_mstate_global->__pyx_n_u_pyx_unpickle__ASyncBoundMethod, NULL, __pyx_mstate_global->__pyx_n_u_a_sync_a_sync_method, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[55])); if (unlikely(!__pyx_t_10)) __PYX_ERR(2, 1, __pyx_L1_error)
|
|
20578
20578
|
__Pyx_GOTREF(__pyx_t_10);
|
|
20579
20579
|
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_pyx_unpickle__ASyncBoundMethod, __pyx_t_10) < 0) __PYX_ERR(2, 1, __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,
|
|
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,
|
|
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(
|
|
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);
|