├── .coveragerc ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── auto-merge.yml │ └── ci.yml ├── .gitignore ├── .style.yapf ├── CHANGES.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── janus ├── __init__.py └── py.typed ├── pyproject.toml ├── requirements-dev.txt ├── setup.cfg ├── setup.py └── tests ├── test_async.py ├── test_benchmarks.py ├── test_mixed.py └── test_sync.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/janus/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/janus/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/janus/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/janus/HEAD/.github/workflows/auto-merge.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/janus/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/janus/HEAD/.gitignore -------------------------------------------------------------------------------- /.style.yapf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/janus/HEAD/.style.yapf -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/janus/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/janus/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/janus/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/janus/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/janus/HEAD/README.rst -------------------------------------------------------------------------------- /janus/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/janus/HEAD/janus/__init__.py -------------------------------------------------------------------------------- /janus/py.typed: -------------------------------------------------------------------------------- 1 | # Placeholder -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/janus/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/janus/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/janus/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/janus/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/janus/HEAD/tests/test_async.py -------------------------------------------------------------------------------- /tests/test_benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/janus/HEAD/tests/test_benchmarks.py -------------------------------------------------------------------------------- /tests/test_mixed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/janus/HEAD/tests/test_mixed.py -------------------------------------------------------------------------------- /tests/test_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aio-libs/janus/HEAD/tests/test_sync.py --------------------------------------------------------------------------------