├── .github ├── dependabot.yml └── workflows │ ├── pre-commit.yml │ ├── test.yml │ └── wheels.yml ├── .gitignore ├── .pre-commit-config.yaml ├── AUTHORS.md ├── LICENSE.txt ├── MANIFEST.in ├── Makefile ├── README.rst ├── cytoolz ├── __init__.pxd ├── __init__.py ├── _signatures.py ├── compatibility.py ├── cpython.pxd ├── curried │ ├── __init__.py │ ├── exceptions.py │ └── operator.py ├── dicttoolz.pxd ├── dicttoolz.pyx ├── functoolz.pxd ├── functoolz.pyx ├── itertoolz.pxd ├── itertoolz.pyx ├── recipes.pxd ├── recipes.pyx ├── tests │ ├── __init__.py │ ├── dev_skip_test.py │ ├── test_compatibility.py │ ├── test_curried.py │ ├── test_curried_toolzlike.py │ ├── test_dev_skip_test.py │ ├── test_dicttoolz.py │ ├── test_docstrings.py │ ├── test_doctests.py │ ├── test_embedded_sigs.py │ ├── test_functoolz.py │ ├── test_inspect_args.py │ ├── test_itertoolz.py │ ├── test_none_safe.py │ ├── test_recipes.py │ ├── test_serialization.py │ ├── test_signatures.py │ ├── test_tlz.py │ └── test_utils.py ├── utils.pxd └── utils.pyx ├── debian ├── changelog ├── compat ├── control ├── copyright ├── files ├── python3-cytoolz.substvars └── rules ├── pyproject.toml ├── requirements_devel.txt └── setup.py /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/.github/workflows/pre-commit.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/wheels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/.github/workflows/wheels.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/README.rst -------------------------------------------------------------------------------- /cytoolz/__init__.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/cytoolz/__init__.pxd -------------------------------------------------------------------------------- /cytoolz/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/cytoolz/__init__.py -------------------------------------------------------------------------------- /cytoolz/_signatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/cytoolz/_signatures.py -------------------------------------------------------------------------------- /cytoolz/compatibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/cytoolz/compatibility.py -------------------------------------------------------------------------------- /cytoolz/cpython.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/cytoolz/cpython.pxd -------------------------------------------------------------------------------- /cytoolz/curried/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/cytoolz/curried/__init__.py -------------------------------------------------------------------------------- /cytoolz/curried/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/cytoolz/curried/exceptions.py -------------------------------------------------------------------------------- /cytoolz/curried/operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/cytoolz/curried/operator.py -------------------------------------------------------------------------------- /cytoolz/dicttoolz.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/cytoolz/dicttoolz.pxd -------------------------------------------------------------------------------- /cytoolz/dicttoolz.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/cytoolz/dicttoolz.pyx -------------------------------------------------------------------------------- /cytoolz/functoolz.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/cytoolz/functoolz.pxd -------------------------------------------------------------------------------- /cytoolz/functoolz.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/cytoolz/functoolz.pyx -------------------------------------------------------------------------------- /cytoolz/itertoolz.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/cytoolz/itertoolz.pxd -------------------------------------------------------------------------------- /cytoolz/itertoolz.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/cytoolz/itertoolz.pyx -------------------------------------------------------------------------------- /cytoolz/recipes.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/cytoolz/recipes.pxd -------------------------------------------------------------------------------- /cytoolz/recipes.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/cytoolz/recipes.pyx -------------------------------------------------------------------------------- /cytoolz/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cytoolz/tests/dev_skip_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/cytoolz/tests/dev_skip_test.py -------------------------------------------------------------------------------- /cytoolz/tests/test_compatibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/cytoolz/tests/test_compatibility.py -------------------------------------------------------------------------------- /cytoolz/tests/test_curried.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/cytoolz/tests/test_curried.py -------------------------------------------------------------------------------- /cytoolz/tests/test_curried_toolzlike.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/cytoolz/tests/test_curried_toolzlike.py -------------------------------------------------------------------------------- /cytoolz/tests/test_dev_skip_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/cytoolz/tests/test_dev_skip_test.py -------------------------------------------------------------------------------- /cytoolz/tests/test_dicttoolz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/cytoolz/tests/test_dicttoolz.py -------------------------------------------------------------------------------- /cytoolz/tests/test_docstrings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/cytoolz/tests/test_docstrings.py -------------------------------------------------------------------------------- /cytoolz/tests/test_doctests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/cytoolz/tests/test_doctests.py -------------------------------------------------------------------------------- /cytoolz/tests/test_embedded_sigs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/cytoolz/tests/test_embedded_sigs.py -------------------------------------------------------------------------------- /cytoolz/tests/test_functoolz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/cytoolz/tests/test_functoolz.py -------------------------------------------------------------------------------- /cytoolz/tests/test_inspect_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/cytoolz/tests/test_inspect_args.py -------------------------------------------------------------------------------- /cytoolz/tests/test_itertoolz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/cytoolz/tests/test_itertoolz.py -------------------------------------------------------------------------------- /cytoolz/tests/test_none_safe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/cytoolz/tests/test_none_safe.py -------------------------------------------------------------------------------- /cytoolz/tests/test_recipes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/cytoolz/tests/test_recipes.py -------------------------------------------------------------------------------- /cytoolz/tests/test_serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/cytoolz/tests/test_serialization.py -------------------------------------------------------------------------------- /cytoolz/tests/test_signatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/cytoolz/tests/test_signatures.py -------------------------------------------------------------------------------- /cytoolz/tests/test_tlz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/cytoolz/tests/test_tlz.py -------------------------------------------------------------------------------- /cytoolz/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/cytoolz/tests/test_utils.py -------------------------------------------------------------------------------- /cytoolz/utils.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/cytoolz/utils.pxd -------------------------------------------------------------------------------- /cytoolz/utils.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/cytoolz/utils.pyx -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/debian/files -------------------------------------------------------------------------------- /debian/python3-cytoolz.substvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/debian/python3-cytoolz.substvars -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/debian/rules -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements_devel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/requirements_devel.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytoolz/cytoolz/HEAD/setup.py --------------------------------------------------------------------------------