ez-a-sync 0.32.19__tar.gz → 0.32.21__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.19 → ez_a_sync-0.32.21}/PKG-INFO +1 -1
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/__init__.py +1 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/_smart.c +169 -142
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/_descriptor.c +189 -162
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/_flags.c +22 -14
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/_helpers.c +138 -122
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/_kwargs.c +107 -82
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/abstract.c +100 -77
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/base.c +141 -118
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/flags.c +61 -48
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/function.c +336 -309
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/function.pyi +27 -12
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/method.c +262 -235
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/modifiers/manager.c +161 -134
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/property.c +244 -219
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/async_property/cached.c +181 -154
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/async_property/proxy.c +302 -275
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/asyncio/as_completed.c +244 -219
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/asyncio/create_task.c +118 -93
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/asyncio/gather.c +124 -99
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/asyncio/igather.c +94 -71
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/asyncio/sleep.c +38 -19
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/debugging.c +68 -56
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/debugging.pyi +6 -3
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/exceptions.c +109 -86
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/functools.c +101 -76
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/iter.c +328 -301
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/primitives/_debug.c +159 -132
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/primitives/_loggable.c +102 -77
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/primitives/locks/counter.c +173 -146
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/primitives/locks/event.c +162 -135
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/primitives/locks/prio_semaphore.c +263 -220
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/primitives/locks/semaphore.c +248 -209
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/utils/repr.c +135 -110
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/ez_a_sync.egg-info/PKG-INFO +1 -1
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/.coverage +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/.github/workflows/black.yaml +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/.github/workflows/codeql.yaml +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/.github/workflows/docs.yaml +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/.github/workflows/mypy.yaml +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/.github/workflows/pytest.yaml +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/.github/workflows/release.yaml +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/.gitignore +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/.sourcery.yaml +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/LICENSE.txt +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/MANIFEST.in +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/Makefile +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/README.md +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/TODO +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/ENVIRONMENT_VARIABLES.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/__init__.pxd +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/_smart.pxd +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/_smart.pyi +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/_smart.pyx +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/_typing.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/__init__.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/_descriptor.pyi +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/_descriptor.pyx +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/_flags.pxd +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/_flags.pyx +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/_helpers.pxd +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/_helpers.pyi +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/_helpers.pyx +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/_kwargs.pxd +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/_kwargs.pyx +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/_meta.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/abstract.pyi +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/abstract.pyx +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/base.pyi +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/base.pyx +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/config.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/decorator.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/flags.pxd +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/flags.pyi +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/flags.pyx +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/function.pxd +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/function.pyx +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/method.pxd +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/method.pyi +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/method.pyx +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/modifiers/__init__.pxd +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/modifiers/__init__.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/modifiers/cache/__init__.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/modifiers/cache/memory.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/modifiers/limiter.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/modifiers/manager.pxd +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/modifiers/manager.pyi +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/modifiers/manager.pyx +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/modifiers/semaphores.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/property.pyi +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/property.pyx +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/a_sync/singleton.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/aliases.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/async_property/__init__.pxd +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/async_property/__init__.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/async_property/cached.pxd +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/async_property/cached.pyi +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/async_property/cached.pyx +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/async_property/proxy.pxd +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/async_property/proxy.pyi +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/async_property/proxy.pyx +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/asyncio/__init__.pxd +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/asyncio/__init__.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/asyncio/as_completed.pxd +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/asyncio/as_completed.pyi +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/asyncio/as_completed.pyx +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/asyncio/create_task.pxd +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/asyncio/create_task.pyi +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/asyncio/create_task.pyx +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/asyncio/gather.pyi +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/asyncio/gather.pyx +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/asyncio/igather.pxd +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/asyncio/igather.pyi +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/asyncio/igather.pyx +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/asyncio/sleep.pyi +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/asyncio/sleep.pyx +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/debugging.pyx +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/exceptions.pyi +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/exceptions.pyx +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/executor.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/functools.pxd +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/functools.pyi +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/functools.pyx +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/future.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/iter.pxd +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/iter.pyi +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/iter.pyx +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/primitives/__init__.pxd +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/primitives/__init__.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/primitives/_debug.pxd +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/primitives/_debug.pyi +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/primitives/_debug.pyx +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/primitives/_loggable.pxd +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/primitives/_loggable.pyi +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/primitives/_loggable.pyx +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/primitives/locks/__init__.pxd +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/primitives/locks/__init__.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/primitives/locks/counter.pxd +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/primitives/locks/counter.pyi +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/primitives/locks/counter.pyx +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/primitives/locks/event.pxd +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/primitives/locks/event.pyi +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/primitives/locks/event.pyx +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/primitives/locks/prio_semaphore.pxd +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/primitives/locks/prio_semaphore.pyi +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/primitives/locks/prio_semaphore.pyx +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/primitives/locks/semaphore.pxd +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/primitives/locks/semaphore.pyi +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/primitives/locks/semaphore.pyx +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/primitives/queue.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/py.typed +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/sphinx/__init__.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/sphinx/ext.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/task.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/utils/__init__.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/utils/iterators.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/utils/repr.pyi +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/a_sync/utils/repr.pyx +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/docs/Makefile +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/docs/_build/html/_static/alabaster.css +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/docs/_build/html/_static/basic.css +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/docs/_build/html/_static/custom.css +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/docs/_build/html/_static/doctools.js +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/docs/_build/html/_static/documentation_options.js +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/docs/_build/html/_static/file.png +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/docs/_build/html/_static/language_data.js +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/docs/_build/html/_static/minus.png +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/docs/_build/html/_static/plus.png +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/docs/_build/html/_static/pygments.css +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/docs/_build/html/_static/searchtools.js +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/docs/_build/html/_static/sphinx_highlight.js +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/docs/conf.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/docs/index.rst +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/docs/make.bat +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/ez_a_sync.egg-info/SOURCES.txt +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/ez_a_sync.egg-info/dependency_links.txt +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/ez_a_sync.egg-info/not-zip-safe +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/ez_a_sync.egg-info/requires.txt +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/ez_a_sync.egg-info/top_level.txt +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/include/pythoncapi_compat.h +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/pyproject.toml +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/requirements-dev.txt +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/requirements.txt +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/setup.cfg +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/setup.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/tests/__init__.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/tests/a_sync/modifiers/test_apply_semaphore.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/tests/a_sync/test_abstract.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/tests/a_sync/test_base.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/tests/a_sync/test_cache.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/tests/a_sync/test_decorator.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/tests/a_sync/test_limiter.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/tests/a_sync/test_meta.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/tests/a_sync/test_modified.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/tests/a_sync/test_property.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/tests/a_sync/test_singleton.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/tests/asyncio/test_as_completed.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/tests/asyncio/test_create_task.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/tests/asyncio/test_gather.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/tests/asyncio/test_igather.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/tests/conftest.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/tests/executor.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/tests/fixtures.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/tests/iter/test_asyncgenfunc.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/tests/iter/test_iterables.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/tests/primitives/test_counter.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/tests/primitives/test_event.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/tests/primitives/test_prio_semaphore.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/tests/primitives/test_queue.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/tests/primitives/test_semaphore.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/tests/task/test_task.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/tests/task/test_task_mapping_views.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/tests/test_executor.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/tests/test_future.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/tests/test_helpers.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/tests/test_smart.py +0 -0
- {ez_a_sync-0.32.19 → ez_a_sync-0.32.21}/tests/utils/test_repr.py +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* Generated by Cython 3.1.
|
|
1
|
+
/* Generated by Cython 3.1.1 */
|
|
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_1"
|
|
36
|
+
#define CYTHON_HEX_VERSION 0x030101F0
|
|
37
37
|
#define CYTHON_FUTURE_DIVISION 1
|
|
38
38
|
/* CModulePreamble */
|
|
39
39
|
#include <stddef.h>
|
|
@@ -1472,6 +1472,55 @@ static const char* const __pyx_f[] = {
|
|
|
1472
1472
|
__pyx_sub_acquisition_count_locked(__pyx_get_slice_count_pointer(memview), memview->lock)
|
|
1473
1473
|
#endif
|
|
1474
1474
|
|
|
1475
|
+
/* Profile_config.proto */
|
|
1476
|
+
#ifndef CYTHON_PROFILE
|
|
1477
|
+
#if CYTHON_COMPILING_IN_LIMITED_API || CYTHON_COMPILING_IN_PYPY
|
|
1478
|
+
#define CYTHON_PROFILE 0
|
|
1479
|
+
#else
|
|
1480
|
+
#define CYTHON_PROFILE 1
|
|
1481
|
+
#endif
|
|
1482
|
+
#endif
|
|
1483
|
+
#ifndef CYTHON_TRACE_NOGIL
|
|
1484
|
+
#define CYTHON_TRACE_NOGIL 0
|
|
1485
|
+
#else
|
|
1486
|
+
#if CYTHON_TRACE_NOGIL && !defined(CYTHON_TRACE)
|
|
1487
|
+
#define CYTHON_TRACE 1
|
|
1488
|
+
#endif
|
|
1489
|
+
#endif
|
|
1490
|
+
#ifndef CYTHON_TRACE
|
|
1491
|
+
#define CYTHON_TRACE 0
|
|
1492
|
+
#endif
|
|
1493
|
+
#if CYTHON_PROFILE || CYTHON_TRACE
|
|
1494
|
+
#if CYTHON_USE_SYS_MONITORING
|
|
1495
|
+
typedef enum {
|
|
1496
|
+
__Pyx_Monitoring_PY_START = 0,
|
|
1497
|
+
__Pyx_Monitoring_PY_RETURN,
|
|
1498
|
+
__Pyx_Monitoring_PY_UNWIND,
|
|
1499
|
+
__Pyx_Monitoring_LINE,
|
|
1500
|
+
__Pyx_Monitoring_RAISE,
|
|
1501
|
+
__Pyx_Monitoring_RERAISE,
|
|
1502
|
+
__Pyx_Monitoring_EXCEPTION_HANDLED,
|
|
1503
|
+
__Pyx_Monitoring_PY_RESUME,
|
|
1504
|
+
__Pyx_Monitoring_PY_YIELD,
|
|
1505
|
+
__Pyx_Monitoring_STOP_ITERATION,
|
|
1506
|
+
} __Pyx_Monitoring_Event_Index;
|
|
1507
|
+
static const unsigned char __Pyx_MonitoringEventTypes[] = {
|
|
1508
|
+
PY_MONITORING_EVENT_PY_START,
|
|
1509
|
+
PY_MONITORING_EVENT_PY_RETURN,
|
|
1510
|
+
PY_MONITORING_EVENT_PY_UNWIND,
|
|
1511
|
+
PY_MONITORING_EVENT_LINE,
|
|
1512
|
+
PY_MONITORING_EVENT_RAISE,
|
|
1513
|
+
PY_MONITORING_EVENT_RERAISE,
|
|
1514
|
+
PY_MONITORING_EVENT_EXCEPTION_HANDLED,
|
|
1515
|
+
PY_MONITORING_EVENT_PY_RESUME,
|
|
1516
|
+
PY_MONITORING_EVENT_PY_YIELD,
|
|
1517
|
+
PY_MONITORING_EVENT_STOP_ITERATION,
|
|
1518
|
+
};
|
|
1519
|
+
#define __Pyx_MonitoringEventTypes_CyFunc_count (sizeof(__Pyx_MonitoringEventTypes) - 3)
|
|
1520
|
+
#define __Pyx_MonitoringEventTypes_CyGen_count (sizeof(__Pyx_MonitoringEventTypes))
|
|
1521
|
+
#endif
|
|
1522
|
+
#endif
|
|
1523
|
+
|
|
1475
1524
|
/* NoFastGil.proto */
|
|
1476
1525
|
#define __Pyx_PyGILState_Ensure PyGILState_Ensure
|
|
1477
1526
|
#define __Pyx_PyGILState_Release PyGILState_Release
|
|
@@ -1952,23 +2001,6 @@ static void __Pyx_RaiseArgtupleInvalid(const char* func_name, int exact,
|
|
|
1952
2001
|
static int __Pyx__ArgTypeTest(PyObject *obj, PyTypeObject *type, const char *name, int exact);
|
|
1953
2002
|
|
|
1954
2003
|
/* Profile.proto */
|
|
1955
|
-
#ifndef CYTHON_PROFILE
|
|
1956
|
-
#if CYTHON_COMPILING_IN_LIMITED_API || CYTHON_COMPILING_IN_PYPY
|
|
1957
|
-
#define CYTHON_PROFILE 0
|
|
1958
|
-
#else
|
|
1959
|
-
#define CYTHON_PROFILE 1
|
|
1960
|
-
#endif
|
|
1961
|
-
#endif
|
|
1962
|
-
#ifndef CYTHON_TRACE_NOGIL
|
|
1963
|
-
#define CYTHON_TRACE_NOGIL 0
|
|
1964
|
-
#else
|
|
1965
|
-
#if CYTHON_TRACE_NOGIL && !defined(CYTHON_TRACE)
|
|
1966
|
-
#define CYTHON_TRACE 1
|
|
1967
|
-
#endif
|
|
1968
|
-
#endif
|
|
1969
|
-
#ifndef CYTHON_TRACE
|
|
1970
|
-
#define CYTHON_TRACE 0
|
|
1971
|
-
#endif
|
|
1972
2004
|
#if CYTHON_TRACE
|
|
1973
2005
|
#undef CYTHON_PROFILE_REUSE_FRAME
|
|
1974
2006
|
#endif
|
|
@@ -1990,33 +2022,7 @@ static int __Pyx__ArgTypeTest(PyObject *obj, PyTypeObject *type, const char *nam
|
|
|
1990
2022
|
#endif
|
|
1991
2023
|
#if CYTHON_PROFILE || CYTHON_TRACE
|
|
1992
2024
|
#if CYTHON_USE_SYS_MONITORING
|
|
1993
|
-
typedef enum {
|
|
1994
|
-
__Pyx_Monitoring_PY_START = 0,
|
|
1995
|
-
__Pyx_Monitoring_PY_RETURN,
|
|
1996
|
-
__Pyx_Monitoring_PY_UNWIND,
|
|
1997
|
-
__Pyx_Monitoring_LINE,
|
|
1998
|
-
__Pyx_Monitoring_RAISE,
|
|
1999
|
-
__Pyx_Monitoring_RERAISE,
|
|
2000
|
-
__Pyx_Monitoring_EXCEPTION_HANDLED,
|
|
2001
|
-
__Pyx_Monitoring_PY_RESUME,
|
|
2002
|
-
__Pyx_Monitoring_PY_YIELD,
|
|
2003
|
-
__Pyx_Monitoring_STOP_ITERATION,
|
|
2004
|
-
} __Pyx_Monitoring_Event_Index;
|
|
2005
|
-
static const unsigned char __Pyx_MonitoringEventTypes[] = {
|
|
2006
|
-
PY_MONITORING_EVENT_PY_START,
|
|
2007
|
-
PY_MONITORING_EVENT_PY_RETURN,
|
|
2008
|
-
PY_MONITORING_EVENT_PY_UNWIND,
|
|
2009
|
-
PY_MONITORING_EVENT_LINE,
|
|
2010
|
-
PY_MONITORING_EVENT_RAISE,
|
|
2011
|
-
PY_MONITORING_EVENT_RERAISE,
|
|
2012
|
-
PY_MONITORING_EVENT_EXCEPTION_HANDLED,
|
|
2013
|
-
PY_MONITORING_EVENT_PY_RESUME,
|
|
2014
|
-
PY_MONITORING_EVENT_PY_YIELD,
|
|
2015
|
-
PY_MONITORING_EVENT_STOP_ITERATION,
|
|
2016
|
-
};
|
|
2017
2025
|
typedef uint64_t __pyx_monitoring_version_type;
|
|
2018
|
-
#define __Pyx_MonitoringEventTypes_CyFunc_count (sizeof(__Pyx_MonitoringEventTypes) - 3)
|
|
2019
|
-
#define __Pyx_MonitoringEventTypes_CyGen_count (sizeof(__Pyx_MonitoringEventTypes))
|
|
2020
2026
|
#define __Pyx_TraceDeclarationsFunc\
|
|
2021
2027
|
PyObject *__pyx_frame_code = NULL;\
|
|
2022
2028
|
PyMonitoringState __pyx_pymonitoring_state[__Pyx_MonitoringEventTypes_CyFunc_count];\
|
|
@@ -2649,12 +2655,19 @@ static CYTHON_INLINE int __Pyx_PyDict_Pop_ignore(PyObject *d, PyObject *key, PyO
|
|
|
2649
2655
|
/* RaiseUnexpectedTypeError.proto */
|
|
2650
2656
|
static int __Pyx_RaiseUnexpectedTypeError(const char *expected, PyObject *obj);
|
|
2651
2657
|
|
|
2658
|
+
/* PyObjectDelAttr.proto */
|
|
2659
|
+
#if CYTHON_COMPILING_IN_LIMITED_API && __PYX_LIMITED_VERSION_HEX < 0x030d0000
|
|
2660
|
+
#define __Pyx_PyObject_DelAttr(o, n) PyObject_SetAttr(o, n, NULL)
|
|
2661
|
+
#else
|
|
2662
|
+
#define __Pyx_PyObject_DelAttr(o, n) PyObject_DelAttr(o, n)
|
|
2663
|
+
#endif
|
|
2664
|
+
|
|
2652
2665
|
/* PyObjectSetAttrStr.proto */
|
|
2653
2666
|
#if CYTHON_USE_TYPE_SLOTS
|
|
2654
2667
|
#define __Pyx_PyObject_DelAttrStr(o,n) __Pyx_PyObject_SetAttrStr(o, n, NULL)
|
|
2655
2668
|
static CYTHON_INLINE int __Pyx_PyObject_SetAttrStr(PyObject* obj, PyObject* attr_name, PyObject* value);
|
|
2656
2669
|
#else
|
|
2657
|
-
#define __Pyx_PyObject_DelAttrStr(o,n)
|
|
2670
|
+
#define __Pyx_PyObject_DelAttrStr(o,n) __Pyx_PyObject_DelAttr(o,n)
|
|
2658
2671
|
#define __Pyx_PyObject_SetAttrStr(o,n,v) PyObject_SetAttr(o,n,v)
|
|
2659
2672
|
#endif
|
|
2660
2673
|
|
|
@@ -2818,22 +2831,22 @@ static int __Pyx__SetItemOnTypeDict(PyTypeObject *tp, PyObject *k, PyObject *v);
|
|
|
2818
2831
|
static int __Pyx_setup_reduce(PyObject* type_obj);
|
|
2819
2832
|
|
|
2820
2833
|
/* TypeImport.proto */
|
|
2821
|
-
#ifndef
|
|
2822
|
-
#define
|
|
2834
|
+
#ifndef __PYX_HAVE_RT_ImportType_proto_3_1_1
|
|
2835
|
+
#define __PYX_HAVE_RT_ImportType_proto_3_1_1
|
|
2823
2836
|
#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
|
|
2824
2837
|
#include <stdalign.h>
|
|
2825
2838
|
#endif
|
|
2826
2839
|
#if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
|
|
2827
|
-
#define
|
|
2840
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_1_1(s) alignof(s)
|
|
2828
2841
|
#else
|
|
2829
|
-
#define
|
|
2842
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_1_1(s) sizeof(void*)
|
|
2830
2843
|
#endif
|
|
2831
|
-
enum
|
|
2832
|
-
|
|
2833
|
-
|
|
2834
|
-
|
|
2844
|
+
enum __Pyx_ImportType_CheckSize_3_1_1 {
|
|
2845
|
+
__Pyx_ImportType_CheckSize_Error_3_1_1 = 0,
|
|
2846
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_1 = 1,
|
|
2847
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_1 = 2
|
|
2835
2848
|
};
|
|
2836
|
-
static PyTypeObject *
|
|
2849
|
+
static PyTypeObject *__Pyx_ImportType_3_1_1(PyObject* module, const char *module_name, const char *class_name, size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_1_1 check_size);
|
|
2837
2850
|
#endif
|
|
2838
2851
|
|
|
2839
2852
|
/* ImportDottedModule.proto */
|
|
@@ -12273,15 +12286,15 @@ static int __Pyx_modinit_type_import_code(__pyx_mstatetype *__pyx_mstate) {
|
|
|
12273
12286
|
/*--- Type import code ---*/
|
|
12274
12287
|
__pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 9, __pyx_L1_error)
|
|
12275
12288
|
__Pyx_GOTREF(__pyx_t_1);
|
|
12276
|
-
__pyx_mstate->__pyx_ptype_7cpython_4type_type =
|
|
12289
|
+
__pyx_mstate->__pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_1_1(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
|
|
12277
12290
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
12278
|
-
sizeof(PyTypeObject),
|
|
12291
|
+
sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_1(PyTypeObject),
|
|
12279
12292
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
12280
12293
|
0, 0,
|
|
12281
12294
|
#else
|
|
12282
|
-
sizeof(PyHeapTypeObject),
|
|
12295
|
+
sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_1(PyHeapTypeObject),
|
|
12283
12296
|
#endif
|
|
12284
|
-
|
|
12297
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_1); if (!__pyx_mstate->__pyx_ptype_7cpython_4type_type) __PYX_ERR(2, 9, __pyx_L1_error)
|
|
12285
12298
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
12286
12299
|
__Pyx_RefNannyFinishContext();
|
|
12287
12300
|
return 0;
|
|
@@ -14151,8 +14164,8 @@ static int __Pyx_InitConstants(__pyx_mstatetype *__pyx_mstate) {
|
|
|
14151
14164
|
} __Pyx_PyCode_New_function_description;
|
|
14152
14165
|
/* NewCodeObj.proto */
|
|
14153
14166
|
static PyObject* __Pyx_PyCode_New(
|
|
14154
|
-
__Pyx_PyCode_New_function_description descr,
|
|
14155
|
-
PyObject
|
|
14167
|
+
const __Pyx_PyCode_New_function_description descr,
|
|
14168
|
+
PyObject * const *varnames,
|
|
14156
14169
|
PyObject *filename,
|
|
14157
14170
|
PyObject *funcname,
|
|
14158
14171
|
const char *line_table,
|
|
@@ -14164,143 +14177,143 @@ static int __Pyx_CreateCodeObjects(__pyx_mstatetype *__pyx_mstate) {
|
|
|
14164
14177
|
PyObject* tuple_dedup_map = PyDict_New();
|
|
14165
14178
|
if (unlikely(!tuple_dedup_map)) return -1;
|
|
14166
14179
|
{
|
|
14167
|
-
__Pyx_PyCode_New_function_description descr = {2, 0, 0, 2, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 67, 11};
|
|
14168
|
-
PyObject* varnames[] = {__pyx_mstate->__pyx_n_u_self, __pyx_mstate->__pyx_n_u_fut};
|
|
14180
|
+
const __Pyx_PyCode_New_function_description descr = {2, 0, 0, 2, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 67, 11};
|
|
14181
|
+
PyObject* const varnames[] = {__pyx_mstate->__pyx_n_u_self, __pyx_mstate->__pyx_n_u_fut};
|
|
14169
14182
|
__pyx_mstate_global->__pyx_codeobj_tab[0] = __Pyx_PyCode_New(descr, varnames, __pyx_mstate->__pyx_kp_u_stringsource, __pyx_mstate->__pyx_n_u_wrap, __pyx_k_A, tuple_dedup_map); if (unlikely(!__pyx_mstate_global->__pyx_codeobj_tab[0])) goto bad;
|
|
14170
14183
|
}
|
|
14171
14184
|
{
|
|
14172
|
-
__Pyx_PyCode_New_function_description descr = {1, 0, 0, 1, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 65, 12};
|
|
14173
|
-
PyObject* varnames[] = {__pyx_mstate->__pyx_n_u_f};
|
|
14185
|
+
const __Pyx_PyCode_New_function_description descr = {1, 0, 0, 1, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 65, 12};
|
|
14186
|
+
PyObject* const varnames[] = {__pyx_mstate->__pyx_n_u_f};
|
|
14174
14187
|
__pyx_mstate_global->__pyx_codeobj_tab[1] = __Pyx_PyCode_New(descr, varnames, __pyx_mstate->__pyx_kp_u_stringsource, __pyx_mstate->__pyx_n_u_Pyx_CFunc_5bbcea__6a_sync_6_sm_2, __pyx_k_1, tuple_dedup_map); if (unlikely(!__pyx_mstate_global->__pyx_codeobj_tab[1])) goto bad;
|
|
14175
14188
|
}
|
|
14176
14189
|
{
|
|
14177
|
-
__Pyx_PyCode_New_function_description descr = {1, 0, 0, 28, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 71, 14};
|
|
14178
|
-
PyObject* varnames[] = {__pyx_mstate->__pyx_n_u_arg, __pyx_mstate->__pyx_n_u_ensure_future, __pyx_mstate->__pyx_n_u_get_event_loop, __pyx_mstate->__pyx_n_u_AbstractEventLoop, __pyx_mstate->__pyx_n_u_Future, __pyx_mstate->__pyx_n_u_Task, __pyx_mstate->__pyx_n_u_CancelledError, __pyx_mstate->__pyx_n_u_InvalidStateError, __pyx_mstate->__pyx_n_u_current_tasks, __pyx_mstate->__pyx_n_u_future_init, __pyx_mstate->__pyx_n_u_get_loop, __pyx_mstate->__pyx_n_u_task_init, __pyx_mstate->__pyx_n_u_logger, __pyx_mstate->__pyx_n_u_DEBUG, __pyx_mstate->__pyx_n_u_DEBUG_LOGS_ENABLED, __pyx_mstate->__pyx_n_u_logger_log, __pyx_mstate->__pyx_n_u_Any, __pyx_mstate->__pyx_n_u_Generic, __pyx_mstate->__pyx_n_u_Tuple, __pyx_mstate->__pyx_n_u_Union, __pyx_mstate->__pyx_n_u_Args, __pyx_mstate->__pyx_n_u_Kwargs, __pyx_mstate->__pyx_n_u_Key_2, __pyx_mstate->__pyx_n_u_ZERO, __pyx_mstate->__pyx_n_u_ONE, __pyx_mstate->__pyx_n_u_NONE, __pyx_mstate->__pyx_n_u_SmartFuture_2, __pyx_mstate->__pyx_n_u_SmartTask_3};
|
|
14190
|
+
const __Pyx_PyCode_New_function_description descr = {1, 0, 0, 28, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 71, 14};
|
|
14191
|
+
PyObject* const varnames[] = {__pyx_mstate->__pyx_n_u_arg, __pyx_mstate->__pyx_n_u_ensure_future, __pyx_mstate->__pyx_n_u_get_event_loop, __pyx_mstate->__pyx_n_u_AbstractEventLoop, __pyx_mstate->__pyx_n_u_Future, __pyx_mstate->__pyx_n_u_Task, __pyx_mstate->__pyx_n_u_CancelledError, __pyx_mstate->__pyx_n_u_InvalidStateError, __pyx_mstate->__pyx_n_u_current_tasks, __pyx_mstate->__pyx_n_u_future_init, __pyx_mstate->__pyx_n_u_get_loop, __pyx_mstate->__pyx_n_u_task_init, __pyx_mstate->__pyx_n_u_logger, __pyx_mstate->__pyx_n_u_DEBUG, __pyx_mstate->__pyx_n_u_DEBUG_LOGS_ENABLED, __pyx_mstate->__pyx_n_u_logger_log, __pyx_mstate->__pyx_n_u_Any, __pyx_mstate->__pyx_n_u_Generic, __pyx_mstate->__pyx_n_u_Tuple, __pyx_mstate->__pyx_n_u_Union, __pyx_mstate->__pyx_n_u_Args, __pyx_mstate->__pyx_n_u_Kwargs, __pyx_mstate->__pyx_n_u_Key_2, __pyx_mstate->__pyx_n_u_ZERO, __pyx_mstate->__pyx_n_u_ONE, __pyx_mstate->__pyx_n_u_NONE, __pyx_mstate->__pyx_n_u_SmartFuture_2, __pyx_mstate->__pyx_n_u_SmartTask_3};
|
|
14179
14192
|
__pyx_mstate_global->__pyx_codeobj_tab[2] = __Pyx_PyCode_New(descr, varnames, __pyx_mstate->__pyx_kp_u_a_sync__smart_pyx, __pyx_mstate->__pyx_n_u_log_await, __pyx_k_q_q, tuple_dedup_map); if (unlikely(!__pyx_mstate_global->__pyx_codeobj_tab[2])) goto bad;
|
|
14180
14193
|
}
|
|
14181
14194
|
{
|
|
14182
|
-
__Pyx_PyCode_New_function_description descr = {1, 0, 0, 1, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 95, 9};
|
|
14183
|
-
PyObject* varnames[] = {__pyx_mstate->__pyx_n_u_self};
|
|
14195
|
+
const __Pyx_PyCode_New_function_description descr = {1, 0, 0, 1, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 95, 9};
|
|
14196
|
+
PyObject* const varnames[] = {__pyx_mstate->__pyx_n_u_self};
|
|
14184
14197
|
__pyx_mstate_global->__pyx_codeobj_tab[3] = __Pyx_PyCode_New(descr, varnames, __pyx_mstate->__pyx_kp_u_a_sync__smart_pyx, __pyx_mstate->__pyx_n_u_cinit, __pyx_k_A_IQ, tuple_dedup_map); if (unlikely(!__pyx_mstate_global->__pyx_codeobj_tab[3])) goto bad;
|
|
14185
14198
|
}
|
|
14186
14199
|
{
|
|
14187
|
-
__Pyx_PyCode_New_function_description descr = {1, 0, 0, 2, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 98, 26};
|
|
14188
|
-
PyObject* varnames[] = {__pyx_mstate->__pyx_n_u_self, __pyx_mstate->__pyx_n_u_gc_callback};
|
|
14200
|
+
const __Pyx_PyCode_New_function_description descr = {1, 0, 0, 2, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 98, 26};
|
|
14201
|
+
PyObject* const varnames[] = {__pyx_mstate->__pyx_n_u_self, __pyx_mstate->__pyx_n_u_gc_callback};
|
|
14189
14202
|
__pyx_mstate_global->__pyx_codeobj_tab[4] = __Pyx_PyCode_New(descr, varnames, __pyx_mstate->__pyx_kp_u_a_sync__smart_pyx, __pyx_mstate->__pyx_n_u_init, __pyx_k_A_a_k, tuple_dedup_map); if (unlikely(!__pyx_mstate_global->__pyx_codeobj_tab[4])) goto bad;
|
|
14190
14203
|
}
|
|
14191
14204
|
{
|
|
14192
|
-
__Pyx_PyCode_New_function_description descr = {1, 0, 0, 2, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 103, 27};
|
|
14193
|
-
PyObject* varnames[] = {__pyx_mstate->__pyx_n_u_self, __pyx_mstate->__pyx_n_u_callback_ptr};
|
|
14205
|
+
const __Pyx_PyCode_New_function_description descr = {1, 0, 0, 2, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 103, 27};
|
|
14206
|
+
PyObject* const varnames[] = {__pyx_mstate->__pyx_n_u_self, __pyx_mstate->__pyx_n_u_callback_ptr};
|
|
14194
14207
|
__pyx_mstate_global->__pyx_codeobj_tab[5] = __Pyx_PyCode_New(descr, varnames, __pyx_mstate->__pyx_kp_u_a_sync__smart_pyx, __pyx_mstate->__pyx_n_u_dealloc, __pyx_k_A_d_q_Qha, tuple_dedup_map); if (unlikely(!__pyx_mstate_global->__pyx_codeobj_tab[5])) goto bad;
|
|
14195
14208
|
}
|
|
14196
14209
|
{
|
|
14197
|
-
__Pyx_PyCode_New_function_description descr = {1, 0, 0, 1, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 108, 23};
|
|
14198
|
-
PyObject* varnames[] = {__pyx_mstate->__pyx_n_u_self};
|
|
14210
|
+
const __Pyx_PyCode_New_function_description descr = {1, 0, 0, 1, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 108, 23};
|
|
14211
|
+
PyObject* const varnames[] = {__pyx_mstate->__pyx_n_u_self};
|
|
14199
14212
|
__pyx_mstate_global->__pyx_codeobj_tab[6] = __Pyx_PyCode_New(descr, varnames, __pyx_mstate->__pyx_kp_u_a_sync__smart_pyx, __pyx_mstate->__pyx_n_u_repr_2, __pyx_k_A_r_T_as_6, tuple_dedup_map); if (unlikely(!__pyx_mstate_global->__pyx_codeobj_tab[6])) goto bad;
|
|
14200
14213
|
}
|
|
14201
14214
|
{
|
|
14202
|
-
__Pyx_PyCode_New_function_description descr = {2, 0, 0, 4, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 125, 61};
|
|
14203
|
-
PyObject* varnames[] = {__pyx_mstate->__pyx_n_u_self, __pyx_mstate->__pyx_n_u_fut, __pyx_mstate->__pyx_n_u_refs, __pyx_mstate->__pyx_n_u_WeakSet__callback_ptr};
|
|
14215
|
+
const __Pyx_PyCode_New_function_description descr = {2, 0, 0, 4, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 125, 61};
|
|
14216
|
+
PyObject* const varnames[] = {__pyx_mstate->__pyx_n_u_self, __pyx_mstate->__pyx_n_u_fut, __pyx_mstate->__pyx_n_u_refs, __pyx_mstate->__pyx_n_u_WeakSet__callback_ptr};
|
|
14204
14217
|
__pyx_mstate_global->__pyx_codeobj_tab[7] = __Pyx_PyCode_New(descr, varnames, __pyx_mstate->__pyx_kp_u_a_sync__smart_pyx, __pyx_mstate->__pyx_n_u_add, __pyx_k_Q_A_5Qit1_s_Qa_F_2Qhha, tuple_dedup_map); if (unlikely(!__pyx_mstate_global->__pyx_codeobj_tab[7])) goto bad;
|
|
14205
14218
|
}
|
|
14206
14219
|
{
|
|
14207
|
-
__Pyx_PyCode_New_function_description descr = {2, 0, 0, 4, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 133, 37};
|
|
14208
|
-
PyObject* varnames[] = {__pyx_mstate->__pyx_n_u_self, __pyx_mstate->__pyx_n_u_fut, __pyx_mstate->__pyx_n_u_refs, __pyx_mstate->__pyx_n_u_WeakSet__callback_ptr};
|
|
14220
|
+
const __Pyx_PyCode_New_function_description descr = {2, 0, 0, 4, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 133, 37};
|
|
14221
|
+
PyObject* const varnames[] = {__pyx_mstate->__pyx_n_u_self, __pyx_mstate->__pyx_n_u_fut, __pyx_mstate->__pyx_n_u_refs, __pyx_mstate->__pyx_n_u_WeakSet__callback_ptr};
|
|
14209
14222
|
__pyx_mstate_global->__pyx_codeobj_tab[8] = __Pyx_PyCode_New(descr, varnames, __pyx_mstate->__pyx_kp_u_a_sync__smart_pyx, __pyx_mstate->__pyx_n_u_remove, __pyx_k_d_2Qa_Q, tuple_dedup_map); if (unlikely(!__pyx_mstate_global->__pyx_codeobj_tab[8])) goto bad;
|
|
14210
14223
|
}
|
|
14211
14224
|
{
|
|
14212
|
-
__Pyx_PyCode_New_function_description descr = {1, 0, 0, 3, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS|CO_GENERATOR), 140, 2};
|
|
14213
|
-
PyObject* varnames[] = {__pyx_mstate->__pyx_n_u_self, __pyx_mstate->__pyx_n_u_obj_ptr, __pyx_mstate->__pyx_n_u_ref};
|
|
14225
|
+
const __Pyx_PyCode_New_function_description descr = {1, 0, 0, 3, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS|CO_GENERATOR), 140, 2};
|
|
14226
|
+
PyObject* const varnames[] = {__pyx_mstate->__pyx_n_u_self, __pyx_mstate->__pyx_n_u_obj_ptr, __pyx_mstate->__pyx_n_u_ref};
|
|
14214
14227
|
__pyx_mstate_global->__pyx_codeobj_tab[9] = __Pyx_PyCode_New(descr, varnames, __pyx_mstate->__pyx_kp_u_a_sync__smart_pyx, __pyx_mstate->__pyx_n_u_iter, __pyx_k_A_2, tuple_dedup_map); if (unlikely(!__pyx_mstate_global->__pyx_codeobj_tab[9])) goto bad;
|
|
14215
14228
|
}
|
|
14216
14229
|
{
|
|
14217
|
-
__Pyx_PyCode_New_function_description descr = {1, 0, 0, 1, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 90, 2};
|
|
14218
|
-
PyObject* varnames[] = {__pyx_mstate->__pyx_n_u_self};
|
|
14230
|
+
const __Pyx_PyCode_New_function_description descr = {1, 0, 0, 1, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 90, 2};
|
|
14231
|
+
PyObject* const varnames[] = {__pyx_mstate->__pyx_n_u_self};
|
|
14219
14232
|
__pyx_mstate_global->__pyx_codeobj_tab[10] = __Pyx_PyCode_New(descr, varnames, __pyx_mstate->__pyx_kp_u_a_sync__smart_pyx, __pyx_mstate->__pyx_n_u_get_2, __pyx_k_q, tuple_dedup_map); if (unlikely(!__pyx_mstate_global->__pyx_codeobj_tab[10])) goto bad;
|
|
14220
14233
|
}
|
|
14221
14234
|
{
|
|
14222
|
-
__Pyx_PyCode_New_function_description descr = {1, 0, 0, 1, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 1, 9};
|
|
14223
|
-
PyObject* varnames[] = {__pyx_mstate->__pyx_n_u_self};
|
|
14235
|
+
const __Pyx_PyCode_New_function_description descr = {1, 0, 0, 1, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 1, 9};
|
|
14236
|
+
PyObject* const varnames[] = {__pyx_mstate->__pyx_n_u_self};
|
|
14224
14237
|
__pyx_mstate_global->__pyx_codeobj_tab[11] = __Pyx_PyCode_New(descr, varnames, __pyx_mstate->__pyx_kp_u_stringsource, __pyx_mstate->__pyx_n_u_reduce_cython, __pyx_k_Q, tuple_dedup_map); if (unlikely(!__pyx_mstate_global->__pyx_codeobj_tab[11])) goto bad;
|
|
14225
14238
|
}
|
|
14226
14239
|
{
|
|
14227
|
-
__Pyx_PyCode_New_function_description descr = {2, 0, 0, 2, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 3, 9};
|
|
14228
|
-
PyObject* varnames[] = {__pyx_mstate->__pyx_n_u_self, __pyx_mstate->__pyx_n_u_pyx_state};
|
|
14240
|
+
const __Pyx_PyCode_New_function_description descr = {2, 0, 0, 2, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 3, 9};
|
|
14241
|
+
PyObject* const varnames[] = {__pyx_mstate->__pyx_n_u_self, __pyx_mstate->__pyx_n_u_pyx_state};
|
|
14229
14242
|
__pyx_mstate_global->__pyx_codeobj_tab[12] = __Pyx_PyCode_New(descr, varnames, __pyx_mstate->__pyx_kp_u_stringsource, __pyx_mstate->__pyx_n_u_setstate_cython, __pyx_k_Q, tuple_dedup_map); if (unlikely(!__pyx_mstate_global->__pyx_codeobj_tab[12])) goto bad;
|
|
14230
14243
|
}
|
|
14231
14244
|
{
|
|
14232
|
-
__Pyx_PyCode_New_function_description descr = {1, 0, 3, 6, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 252, 107};
|
|
14233
|
-
PyObject* varnames[] = {__pyx_mstate->__pyx_n_u_self, __pyx_mstate->__pyx_n_u_queue, __pyx_mstate->__pyx_n_u_key, __pyx_mstate->__pyx_n_u_loop, __pyx_mstate->__pyx_n_u_queue_ptr, __pyx_mstate->__pyx_n_u_proxy_ptr};
|
|
14245
|
+
const __Pyx_PyCode_New_function_description descr = {1, 0, 3, 6, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 252, 107};
|
|
14246
|
+
PyObject* const varnames[] = {__pyx_mstate->__pyx_n_u_self, __pyx_mstate->__pyx_n_u_queue, __pyx_mstate->__pyx_n_u_key, __pyx_mstate->__pyx_n_u_loop, __pyx_mstate->__pyx_n_u_queue_ptr, __pyx_mstate->__pyx_n_u_proxy_ptr};
|
|
14234
14247
|
__pyx_mstate_global->__pyx_codeobj_tab[13] = __Pyx_PyCode_New(descr, varnames, __pyx_mstate->__pyx_kp_u_a_sync__smart_pyx, __pyx_mstate->__pyx_n_u_init, __pyx_k_A_q_Q_a_AV5_1_1_a_z_A_k_1_L_q, tuple_dedup_map); if (unlikely(!__pyx_mstate_global->__pyx_codeobj_tab[13])) goto bad;
|
|
14235
14248
|
}
|
|
14236
14249
|
{
|
|
14237
|
-
__Pyx_PyCode_New_function_description descr = {1, 0, 0, 1, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 288, 40};
|
|
14238
|
-
PyObject* varnames[] = {__pyx_mstate->__pyx_n_u_self};
|
|
14250
|
+
const __Pyx_PyCode_New_function_description descr = {1, 0, 0, 1, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 288, 40};
|
|
14251
|
+
PyObject* const varnames[] = {__pyx_mstate->__pyx_n_u_self};
|
|
14239
14252
|
__pyx_mstate_global->__pyx_codeobj_tab[14] = __Pyx_PyCode_New(descr, varnames, __pyx_mstate->__pyx_kp_u_a_sync__smart_pyx, __pyx_mstate->__pyx_n_u_repr_2, __pyx_k_A_r_d_5_0_4DMQRRZZ__ccd, tuple_dedup_map); if (unlikely(!__pyx_mstate_global->__pyx_codeobj_tab[14])) goto bad;
|
|
14240
14253
|
}
|
|
14241
14254
|
{
|
|
14242
|
-
__Pyx_PyCode_New_function_description descr = {2, 0, 0, 2, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 291, 27};
|
|
14243
|
-
PyObject* varnames[] = {__pyx_mstate->__pyx_n_u_self, __pyx_mstate->__pyx_n_u_other};
|
|
14255
|
+
const __Pyx_PyCode_New_function_description descr = {2, 0, 0, 2, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 291, 27};
|
|
14256
|
+
PyObject* const varnames[] = {__pyx_mstate->__pyx_n_u_self, __pyx_mstate->__pyx_n_u_other};
|
|
14244
14257
|
__pyx_mstate_global->__pyx_codeobj_tab[15] = __Pyx_PyCode_New(descr, varnames, __pyx_mstate->__pyx_kp_u_a_sync__smart_pyx, __pyx_mstate->__pyx_n_u_lt, __pyx_k_1_AV2_1, tuple_dedup_map); if (unlikely(!__pyx_mstate_global->__pyx_codeobj_tab[15])) goto bad;
|
|
14245
14258
|
}
|
|
14246
14259
|
{
|
|
14247
|
-
__Pyx_PyCode_New_function_description descr = {1, 0, 0, 3, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS|CO_GENERATOR), 311, 5};
|
|
14248
|
-
PyObject* varnames[] = {__pyx_mstate->__pyx_n_u_self, __pyx_mstate->__pyx_n_u_task, __pyx_mstate->__pyx_n_u_queue};
|
|
14260
|
+
const __Pyx_PyCode_New_function_description descr = {1, 0, 0, 3, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS|CO_GENERATOR), 311, 5};
|
|
14261
|
+
PyObject* const varnames[] = {__pyx_mstate->__pyx_n_u_self, __pyx_mstate->__pyx_n_u_task, __pyx_mstate->__pyx_n_u_queue};
|
|
14249
14262
|
__pyx_mstate_global->__pyx_codeobj_tab[16] = __Pyx_PyCode_New(descr, varnames, __pyx_mstate->__pyx_kp_u_a_sync__smart_pyx, __pyx_mstate->__pyx_n_u_await, __pyx_k_1_2, tuple_dedup_map); if (unlikely(!__pyx_mstate_global->__pyx_codeobj_tab[16])) goto bad;
|
|
14250
14263
|
}
|
|
14251
14264
|
{
|
|
14252
|
-
__Pyx_PyCode_New_function_description descr = {1, 0, 0, 2, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS|CO_GENERATOR), 461, 5};
|
|
14253
|
-
PyObject* varnames[] = {__pyx_mstate->__pyx_n_u_self, __pyx_mstate->__pyx_n_u_task};
|
|
14265
|
+
const __Pyx_PyCode_New_function_description descr = {1, 0, 0, 2, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS|CO_GENERATOR), 461, 5};
|
|
14266
|
+
PyObject* const varnames[] = {__pyx_mstate->__pyx_n_u_self, __pyx_mstate->__pyx_n_u_task};
|
|
14254
14267
|
__pyx_mstate_global->__pyx_codeobj_tab[17] = __Pyx_PyCode_New(descr, varnames, __pyx_mstate->__pyx_kp_u_a_sync__smart_pyx, __pyx_mstate->__pyx_n_u_await, __pyx_k_1_2, tuple_dedup_map); if (unlikely(!__pyx_mstate_global->__pyx_codeobj_tab[17])) goto bad;
|
|
14255
14268
|
}
|
|
14256
14269
|
{
|
|
14257
|
-
__Pyx_PyCode_New_function_description descr = {1, 0, 0, 2, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 555, 45};
|
|
14258
|
-
PyObject* varnames[] = {__pyx_mstate->__pyx_n_u_loop, __pyx_mstate->__pyx_n_u_a_sync};
|
|
14270
|
+
const __Pyx_PyCode_New_function_description descr = {1, 0, 0, 2, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 555, 45};
|
|
14271
|
+
PyObject* const varnames[] = {__pyx_mstate->__pyx_n_u_loop, __pyx_mstate->__pyx_n_u_a_sync};
|
|
14259
14272
|
__pyx_mstate_global->__pyx_codeobj_tab[18] = __Pyx_PyCode_New(descr, varnames, __pyx_mstate->__pyx_kp_u_a_sync__smart_pyx, __pyx_mstate->__pyx_n_u_set_smart_task_factory, __pyx_k_6_a_uCq_vX_A, tuple_dedup_map); if (unlikely(!__pyx_mstate_global->__pyx_codeobj_tab[18])) goto bad;
|
|
14260
14273
|
}
|
|
14261
14274
|
{
|
|
14262
|
-
__Pyx_PyCode_New_function_description descr = {1, 0, 0, 1, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 578, 123};
|
|
14263
|
-
PyObject* varnames[] = {__pyx_mstate->__pyx_n_u_arg};
|
|
14275
|
+
const __Pyx_PyCode_New_function_description descr = {1, 0, 0, 1, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 578, 123};
|
|
14276
|
+
PyObject* const varnames[] = {__pyx_mstate->__pyx_n_u_arg};
|
|
14264
14277
|
__pyx_mstate_global->__pyx_codeobj_tab[19] = __Pyx_PyCode_New(descr, varnames, __pyx_mstate->__pyx_kp_u_a_sync__smart_pyx, __pyx_mstate->__pyx_n_u_shield, __pyx_k_X_M_xq_q_9AQ_L_a_7_7_gWA_t1A_11, tuple_dedup_map); if (unlikely(!__pyx_mstate_global->__pyx_codeobj_tab[19])) goto bad;
|
|
14265
14278
|
}
|
|
14266
14279
|
{
|
|
14267
|
-
__Pyx_PyCode_New_function_description descr = {1, 0, 0, 2, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 643, 87};
|
|
14268
|
-
PyObject* varnames[] = {__pyx_mstate->__pyx_n_u_inner, __pyx_mstate->__pyx_n_u_exc};
|
|
14280
|
+
const __Pyx_PyCode_New_function_description descr = {1, 0, 0, 2, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 643, 87};
|
|
14281
|
+
PyObject* const varnames[] = {__pyx_mstate->__pyx_n_u_inner, __pyx_mstate->__pyx_n_u_exc};
|
|
14269
14282
|
__pyx_mstate_global->__pyx_codeobj_tab[20] = __Pyx_PyCode_New(descr, varnames, __pyx_mstate->__pyx_kp_u_a_sync__smart_pyx, __pyx_mstate->__pyx_n_u_inner_done_callback, __pyx_k_A_t_q_t7_1A_a, tuple_dedup_map); if (unlikely(!__pyx_mstate_global->__pyx_codeobj_tab[20])) goto bad;
|
|
14270
14283
|
}
|
|
14271
14284
|
{
|
|
14272
|
-
__Pyx_PyCode_New_function_description descr = {1, 0, 0, 1, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 659, 21};
|
|
14273
|
-
PyObject* varnames[] = {__pyx_mstate->__pyx_n_u_outer};
|
|
14285
|
+
const __Pyx_PyCode_New_function_description descr = {1, 0, 0, 1, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 659, 21};
|
|
14286
|
+
PyObject* const varnames[] = {__pyx_mstate->__pyx_n_u_outer};
|
|
14274
14287
|
__pyx_mstate_global->__pyx_codeobj_tab[21] = __Pyx_PyCode_New(descr, varnames, __pyx_mstate->__pyx_kp_u_a_sync__smart_pyx, __pyx_mstate->__pyx_n_u_outer_done_callback, __pyx_k_A_q_aq, tuple_dedup_map); if (unlikely(!__pyx_mstate_global->__pyx_codeobj_tab[21])) goto bad;
|
|
14275
14288
|
}
|
|
14276
14289
|
{
|
|
14277
|
-
__Pyx_PyCode_New_function_description descr = {2, 0, 0, 29, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 641, 25};
|
|
14278
|
-
PyObject* varnames[] = {__pyx_mstate->__pyx_n_u_inner, __pyx_mstate->__pyx_n_u_outer, __pyx_mstate->__pyx_n_u_ensure_future, __pyx_mstate->__pyx_n_u_get_event_loop, __pyx_mstate->__pyx_n_u_AbstractEventLoop, __pyx_mstate->__pyx_n_u_Future, __pyx_mstate->__pyx_n_u_Task, __pyx_mstate->__pyx_n_u_CancelledError, __pyx_mstate->__pyx_n_u_InvalidStateError, __pyx_mstate->__pyx_n_u_current_tasks, __pyx_mstate->__pyx_n_u_future_init, __pyx_mstate->__pyx_n_u_get_loop, __pyx_mstate->__pyx_n_u_task_init, __pyx_mstate->__pyx_n_u_logger, __pyx_mstate->__pyx_n_u_DEBUG, __pyx_mstate->__pyx_n_u_DEBUG_LOGS_ENABLED, __pyx_mstate->__pyx_n_u_logger_log, __pyx_mstate->__pyx_n_u_Any, __pyx_mstate->__pyx_n_u_Generic, __pyx_mstate->__pyx_n_u_Tuple, __pyx_mstate->__pyx_n_u_Union, __pyx_mstate->__pyx_n_u_Args, __pyx_mstate->__pyx_n_u_Kwargs, __pyx_mstate->__pyx_n_u_Key_2, __pyx_mstate->__pyx_n_u_ZERO, __pyx_mstate->__pyx_n_u_ONE, __pyx_mstate->__pyx_n_u_NONE, __pyx_mstate->__pyx_n_u_SmartFuture_2, __pyx_mstate->__pyx_n_u_SmartTask_3};
|
|
14290
|
+
const __Pyx_PyCode_New_function_description descr = {2, 0, 0, 29, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 641, 25};
|
|
14291
|
+
PyObject* const varnames[] = {__pyx_mstate->__pyx_n_u_inner, __pyx_mstate->__pyx_n_u_outer, __pyx_mstate->__pyx_n_u_ensure_future, __pyx_mstate->__pyx_n_u_get_event_loop, __pyx_mstate->__pyx_n_u_AbstractEventLoop, __pyx_mstate->__pyx_n_u_Future, __pyx_mstate->__pyx_n_u_Task, __pyx_mstate->__pyx_n_u_CancelledError, __pyx_mstate->__pyx_n_u_InvalidStateError, __pyx_mstate->__pyx_n_u_current_tasks, __pyx_mstate->__pyx_n_u_future_init, __pyx_mstate->__pyx_n_u_get_loop, __pyx_mstate->__pyx_n_u_task_init, __pyx_mstate->__pyx_n_u_logger, __pyx_mstate->__pyx_n_u_DEBUG, __pyx_mstate->__pyx_n_u_DEBUG_LOGS_ENABLED, __pyx_mstate->__pyx_n_u_logger_log, __pyx_mstate->__pyx_n_u_Any, __pyx_mstate->__pyx_n_u_Generic, __pyx_mstate->__pyx_n_u_Tuple, __pyx_mstate->__pyx_n_u_Union, __pyx_mstate->__pyx_n_u_Args, __pyx_mstate->__pyx_n_u_Kwargs, __pyx_mstate->__pyx_n_u_Key_2, __pyx_mstate->__pyx_n_u_ZERO, __pyx_mstate->__pyx_n_u_ONE, __pyx_mstate->__pyx_n_u_NONE, __pyx_mstate->__pyx_n_u_SmartFuture_2, __pyx_mstate->__pyx_n_u_SmartTask_3};
|
|
14279
14292
|
__pyx_mstate_global->__pyx_codeobj_tab[22] = __Pyx_PyCode_New(descr, varnames, __pyx_mstate->__pyx_kp_u_a_sync__smart_pyx, __pyx_mstate->__pyx_n_u_get_done_callbacks, __pyx_k_m1, tuple_dedup_map); if (unlikely(!__pyx_mstate_global->__pyx_codeobj_tab[22])) goto bad;
|
|
14280
14293
|
}
|
|
14281
14294
|
{
|
|
14282
|
-
__Pyx_PyCode_New_function_description descr = {2, 0, 0, 2, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 357, 31};
|
|
14283
|
-
PyObject* varnames[] = {__pyx_mstate->__pyx_n_u_self, __pyx_mstate->__pyx_n_u_waiter};
|
|
14295
|
+
const __Pyx_PyCode_New_function_description descr = {2, 0, 0, 2, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 357, 31};
|
|
14296
|
+
PyObject* const varnames[] = {__pyx_mstate->__pyx_n_u_self, __pyx_mstate->__pyx_n_u_waiter};
|
|
14284
14297
|
__pyx_mstate_global->__pyx_codeobj_tab[23] = __Pyx_PyCode_New(descr, varnames, __pyx_mstate->__pyx_kp_u_a_sync__smart_pyx, __pyx_mstate->__pyx_n_u_waiter_done_cleanup_callback, __pyx_k_A4DA_q_d_G1A, tuple_dedup_map); if (unlikely(!__pyx_mstate_global->__pyx_codeobj_tab[23])) goto bad;
|
|
14285
14298
|
}
|
|
14286
14299
|
{
|
|
14287
|
-
__Pyx_PyCode_New_function_description descr = {3, 0, 0, 3, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 382, 44};
|
|
14288
|
-
PyObject* varnames[] = {__pyx_mstate->__pyx_n_u_queue, __pyx_mstate->__pyx_n_u_key, __pyx_mstate->__pyx_n_u_loop};
|
|
14300
|
+
const __Pyx_PyCode_New_function_description descr = {3, 0, 0, 3, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 382, 44};
|
|
14301
|
+
PyObject* const varnames[] = {__pyx_mstate->__pyx_n_u_queue, __pyx_mstate->__pyx_n_u_key, __pyx_mstate->__pyx_n_u_loop};
|
|
14289
14302
|
__pyx_mstate_global->__pyx_codeobj_tab[24] = __Pyx_PyCode_New(descr, varnames, __pyx_mstate->__pyx_kp_u_a_sync__smart_pyx, __pyx_mstate->__pyx_n_u_create_future, __pyx_k_a_q_gT_e5, tuple_dedup_map); if (unlikely(!__pyx_mstate_global->__pyx_codeobj_tab[24])) goto bad;
|
|
14290
14303
|
}
|
|
14291
14304
|
{
|
|
14292
|
-
__Pyx_PyCode_New_function_description descr = {2, 0, 2, 4, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 434, 46};
|
|
14293
|
-
PyObject* varnames[] = {__pyx_mstate->__pyx_n_u_self, __pyx_mstate->__pyx_n_u_coro, __pyx_mstate->__pyx_n_u_loop, __pyx_mstate->__pyx_n_u_name_2};
|
|
14305
|
+
const __Pyx_PyCode_New_function_description descr = {2, 0, 2, 4, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 434, 46};
|
|
14306
|
+
PyObject* const varnames[] = {__pyx_mstate->__pyx_n_u_self, __pyx_mstate->__pyx_n_u_coro, __pyx_mstate->__pyx_n_u_loop, __pyx_mstate->__pyx_n_u_name_2};
|
|
14294
14307
|
__pyx_mstate_global->__pyx_codeobj_tab[25] = __Pyx_PyCode_New(descr, varnames, __pyx_mstate->__pyx_kp_u_a_sync__smart_pyx, __pyx_mstate->__pyx_n_u_init, __pyx_k_A_a_a_6_uF_q_O1, tuple_dedup_map); if (unlikely(!__pyx_mstate_global->__pyx_codeobj_tab[25])) goto bad;
|
|
14295
14308
|
}
|
|
14296
14309
|
{
|
|
14297
|
-
__Pyx_PyCode_New_function_description descr = {2, 0, 0, 2, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 506, 31};
|
|
14298
|
-
PyObject* varnames[] = {__pyx_mstate->__pyx_n_u_self, __pyx_mstate->__pyx_n_u_waiter};
|
|
14310
|
+
const __Pyx_PyCode_New_function_description descr = {2, 0, 0, 2, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 506, 31};
|
|
14311
|
+
PyObject* const varnames[] = {__pyx_mstate->__pyx_n_u_self, __pyx_mstate->__pyx_n_u_waiter};
|
|
14299
14312
|
__pyx_mstate_global->__pyx_codeobj_tab[26] = __Pyx_PyCode_New(descr, varnames, __pyx_mstate->__pyx_kp_u_a_sync__smart_pyx, __pyx_mstate->__pyx_n_u_waiter_done_cleanup_callback, __pyx_k_A4DA_q_j_q, tuple_dedup_map); if (unlikely(!__pyx_mstate_global->__pyx_codeobj_tab[26])) goto bad;
|
|
14300
14313
|
}
|
|
14301
14314
|
{
|
|
14302
|
-
__Pyx_PyCode_New_function_description descr = {2, 0, 0, 2, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 526, 22};
|
|
14303
|
-
PyObject* varnames[] = {__pyx_mstate->__pyx_n_u_loop, __pyx_mstate->__pyx_n_u_coro};
|
|
14315
|
+
const __Pyx_PyCode_New_function_description descr = {2, 0, 0, 2, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 526, 22};
|
|
14316
|
+
PyObject* const varnames[] = {__pyx_mstate->__pyx_n_u_loop, __pyx_mstate->__pyx_n_u_coro};
|
|
14304
14317
|
__pyx_mstate_global->__pyx_codeobj_tab[27] = __Pyx_PyCode_New(descr, varnames, __pyx_mstate->__pyx_kp_u_a_sync__smart_pyx, __pyx_mstate->__pyx_n_u_smart_task_factory, __pyx_k_q2_QfE, tuple_dedup_map); if (unlikely(!__pyx_mstate_global->__pyx_codeobj_tab[27])) goto bad;
|
|
14305
14318
|
}
|
|
14306
14319
|
Py_DECREF(tuple_dedup_map);
|
|
@@ -15020,6 +15033,11 @@ static PyObject *__Pyx_SelflessCall(PyObject *method, PyObject *args, PyObject *
|
|
|
15020
15033
|
Py_DECREF(selfless_args);
|
|
15021
15034
|
return result;
|
|
15022
15035
|
}
|
|
15036
|
+
#elif CYTHON_COMPILING_IN_PYPY && PY_VERSION_HEX < 0x03090000
|
|
15037
|
+
static PyObject *__Pyx_SelflessCall(PyObject *method, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) {
|
|
15038
|
+
return _PyObject_Vectorcall
|
|
15039
|
+
(method, args ? args+1 : NULL, nargs ? nargs-1 : 0, kwnames);
|
|
15040
|
+
}
|
|
15023
15041
|
#else
|
|
15024
15042
|
static PyObject *__Pyx_SelflessCall(PyObject *method, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames) {
|
|
15025
15043
|
return
|
|
@@ -15343,7 +15361,9 @@ static int __Pyx_ParseKeywordDict(
|
|
|
15343
15361
|
PyObject** const *name;
|
|
15344
15362
|
PyObject** const *first_kw_arg = argnames + num_pos_args;
|
|
15345
15363
|
Py_ssize_t extracted = 0;
|
|
15364
|
+
#if !CYTHON_COMPILING_IN_PYPY || defined(PyArg_ValidateKeywordArguments)
|
|
15346
15365
|
if (unlikely(!PyArg_ValidateKeywordArguments(kwds))) return -1;
|
|
15366
|
+
#endif
|
|
15347
15367
|
name = first_kw_arg;
|
|
15348
15368
|
while (*name && num_kwargs > extracted) {
|
|
15349
15369
|
PyObject * key = **name;
|
|
@@ -15391,7 +15411,9 @@ static int __Pyx_ParseKeywordDictToDict(
|
|
|
15391
15411
|
PyObject** const *name;
|
|
15392
15412
|
PyObject** const *first_kw_arg = argnames + num_pos_args;
|
|
15393
15413
|
Py_ssize_t len;
|
|
15414
|
+
#if !CYTHON_COMPILING_IN_PYPY || defined(PyArg_ValidateKeywordArguments)
|
|
15394
15415
|
if (unlikely(!PyArg_ValidateKeywordArguments(kwds))) return -1;
|
|
15416
|
+
#endif
|
|
15395
15417
|
if (PyDict_Update(kwds2, kwds) < 0) goto bad;
|
|
15396
15418
|
name = first_kw_arg;
|
|
15397
15419
|
while (*name) {
|
|
@@ -17232,7 +17254,9 @@ static void __Pyx_RejectKeywords(const char* function_name, PyObject *kwds) {
|
|
|
17232
17254
|
key = __Pyx_PySequence_ITEM(kwds, 0);
|
|
17233
17255
|
} else {
|
|
17234
17256
|
Py_ssize_t pos = 0;
|
|
17257
|
+
#if !CYTHON_COMPILING_IN_PYPY || defined(PyArg_ValidateKeywordArguments)
|
|
17235
17258
|
if (unlikely(!PyArg_ValidateKeywordArguments(kwds))) return;
|
|
17259
|
+
#endif
|
|
17236
17260
|
PyDict_Next(kwds, &pos, &key, NULL);
|
|
17237
17261
|
Py_INCREF(key);
|
|
17238
17262
|
}
|
|
@@ -18458,7 +18482,8 @@ static PyObject *__Pyx_Import(PyObject *name, PyObject *from_list, int level) {
|
|
|
18458
18482
|
if (unlikely(!empty_dict))
|
|
18459
18483
|
goto bad;
|
|
18460
18484
|
if (level == -1) {
|
|
18461
|
-
|
|
18485
|
+
const char* package_sep = strchr(__Pyx_MODULE_NAME, '.');
|
|
18486
|
+
if (package_sep != (0)) {
|
|
18462
18487
|
module = PyImport_ImportModuleLevelObject(
|
|
18463
18488
|
name, __pyx_mstate_global->__pyx_d, empty_dict, from_list, 1);
|
|
18464
18489
|
if (unlikely(!module)) {
|
|
@@ -19063,13 +19088,12 @@ __PYX_GOOD:
|
|
|
19063
19088
|
}
|
|
19064
19089
|
|
|
19065
19090
|
/* TypeImport */
|
|
19066
|
-
#ifndef
|
|
19067
|
-
#define
|
|
19068
|
-
static PyTypeObject *
|
|
19069
|
-
size_t size, size_t alignment, enum
|
|
19091
|
+
#ifndef __PYX_HAVE_RT_ImportType_3_1_1
|
|
19092
|
+
#define __PYX_HAVE_RT_ImportType_3_1_1
|
|
19093
|
+
static PyTypeObject *__Pyx_ImportType_3_1_1(PyObject *module, const char *module_name, const char *class_name,
|
|
19094
|
+
size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_1_1 check_size)
|
|
19070
19095
|
{
|
|
19071
19096
|
PyObject *result = 0;
|
|
19072
|
-
char warning[200];
|
|
19073
19097
|
Py_ssize_t basicsize;
|
|
19074
19098
|
Py_ssize_t itemsize;
|
|
19075
19099
|
#if CYTHON_COMPILING_IN_LIMITED_API
|
|
@@ -19123,7 +19147,7 @@ static PyTypeObject *__Pyx_ImportType_3_1_0(PyObject *module, const char *module
|
|
|
19123
19147
|
module_name, class_name, size, basicsize+itemsize);
|
|
19124
19148
|
goto bad;
|
|
19125
19149
|
}
|
|
19126
|
-
if (check_size ==
|
|
19150
|
+
if (check_size == __Pyx_ImportType_CheckSize_Error_3_1_1 &&
|
|
19127
19151
|
((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
|
|
19128
19152
|
PyErr_Format(PyExc_ValueError,
|
|
19129
19153
|
"%.200s.%.200s size changed, may indicate binary incompatibility. "
|
|
@@ -19131,12 +19155,13 @@ static PyTypeObject *__Pyx_ImportType_3_1_0(PyObject *module, const char *module
|
|
|
19131
19155
|
module_name, class_name, size, basicsize, basicsize+itemsize);
|
|
19132
19156
|
goto bad;
|
|
19133
19157
|
}
|
|
19134
|
-
else if (check_size ==
|
|
19135
|
-
|
|
19136
|
-
|
|
19137
|
-
|
|
19138
|
-
|
|
19139
|
-
|
|
19158
|
+
else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_1_1 && (size_t)basicsize > size) {
|
|
19159
|
+
if (PyErr_WarnFormat(NULL, 0,
|
|
19160
|
+
"%.200s.%.200s size changed, may indicate binary incompatibility. "
|
|
19161
|
+
"Expected %zd from C header, got %zd from PyObject",
|
|
19162
|
+
module_name, class_name, size, basicsize) < 0) {
|
|
19163
|
+
goto bad;
|
|
19164
|
+
}
|
|
19140
19165
|
}
|
|
19141
19166
|
return (PyTypeObject *)result;
|
|
19142
19167
|
bad:
|
|
@@ -20314,7 +20339,7 @@ static CYTHON_INLINE PyObject* __Pyx_PyLong_From_long(long value) {
|
|
|
20314
20339
|
return PyLong_FromLong((long) value);
|
|
20315
20340
|
} else if (sizeof(long) <= sizeof(unsigned long)) {
|
|
20316
20341
|
return PyLong_FromUnsignedLong((unsigned long) value);
|
|
20317
|
-
#
|
|
20342
|
+
#if defined(HAVE_LONG_LONG) && !CYTHON_COMPILING_IN_PYPY
|
|
20318
20343
|
} else if (sizeof(long) <= sizeof(unsigned PY_LONG_LONG)) {
|
|
20319
20344
|
return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value);
|
|
20320
20345
|
#endif
|
|
@@ -20832,8 +20857,8 @@ static void __Pyx__ReturnWithStopIteration(PyObject* value, int async) {
|
|
|
20832
20857
|
PyObject *exc;
|
|
20833
20858
|
PyObject *exc_type = async ? PyExc_StopAsyncIteration : PyExc_StopIteration;
|
|
20834
20859
|
#if CYTHON_COMPILING_IN_CPYTHON
|
|
20835
|
-
if ((PY_VERSION_HEX >= 0x030C00A6) || unlikely(PyTuple_Check(value) || PyExceptionInstance_Check(value))) {
|
|
20836
|
-
if (
|
|
20860
|
+
if ((PY_VERSION_HEX >= (0x030C00A6)) || unlikely(PyTuple_Check(value) || PyExceptionInstance_Check(value))) {
|
|
20861
|
+
if (PY_VERSION_HEX >= (0x030e00A1)) {
|
|
20837
20862
|
exc = __Pyx_PyObject_CallOneArg(exc_type, value);
|
|
20838
20863
|
} else {
|
|
20839
20864
|
PyObject *args_tuple = PyTuple_New(1);
|
|
@@ -21198,17 +21223,19 @@ __Pyx_Coroutine_FinishDelegation(__pyx_CoroutineObject *gen, PyObject** retval)
|
|
|
21198
21223
|
static __Pyx_PySendResult
|
|
21199
21224
|
__Pyx_Coroutine_SendToDelegate(__pyx_CoroutineObject *gen, __Pyx_pyiter_sendfunc gen_am_send, PyObject *value, PyObject **retval) {
|
|
21200
21225
|
PyObject *ret = NULL;
|
|
21201
|
-
__Pyx_PySendResult result;
|
|
21226
|
+
__Pyx_PySendResult delegate_result, result;
|
|
21202
21227
|
assert(__Pyx_Coroutine_get_is_running(gen));
|
|
21203
|
-
|
|
21204
|
-
if (
|
|
21228
|
+
delegate_result = gen_am_send(gen->yieldfrom, value, &ret);
|
|
21229
|
+
if (delegate_result == PYGEN_NEXT) {
|
|
21205
21230
|
assert (ret != NULL);
|
|
21206
21231
|
*retval = ret;
|
|
21207
21232
|
return PYGEN_NEXT;
|
|
21208
21233
|
}
|
|
21209
|
-
assert (
|
|
21234
|
+
assert (delegate_result != PYGEN_ERROR || ret == NULL);
|
|
21210
21235
|
__Pyx_Coroutine_Undelegate(gen);
|
|
21211
|
-
|
|
21236
|
+
result = __Pyx_Coroutine_SendEx(gen, ret, retval, 0);
|
|
21237
|
+
Py_XDECREF(ret);
|
|
21238
|
+
return result;
|
|
21212
21239
|
}
|
|
21213
21240
|
#endif
|
|
21214
21241
|
static PyObject *__Pyx_Coroutine_Send(PyObject *self, PyObject *value) {
|
|
@@ -22054,9 +22081,9 @@ bad:
|
|
|
22054
22081
|
PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)
|
|
22055
22082
|
#endif
|
|
22056
22083
|
static PyObject* __Pyx_PyCode_New(
|
|
22057
|
-
__Pyx_PyCode_New_function_description descr,
|
|
22058
|
-
PyObject
|
|
22059
|
-
PyObject*
|
|
22084
|
+
const __Pyx_PyCode_New_function_description descr,
|
|
22085
|
+
PyObject * const *varnames,
|
|
22086
|
+
PyObject *filename,
|
|
22060
22087
|
PyObject *funcname,
|
|
22061
22088
|
const char *line_table,
|
|
22062
22089
|
PyObject *tuple_dedup_map
|