├── .gitignore ├── .travis.yml ├── HISTORY.md ├── LICENSE ├── MANIFEST ├── README.rst ├── docs ├── Makefile ├── api.rst ├── conf.py ├── examples.rst └── index.rst ├── redset ├── __init__.py ├── exceptions.py ├── interfaces.py ├── locks.py ├── serializers.py └── sets.py ├── setup.py └── tests ├── __init__.py ├── test_concurrency.py ├── test_serializers.py └── test_sets.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | docs/_build 3 | 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percolate/redset/HEAD/.travis.yml -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percolate/redset/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percolate/redset/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percolate/redset/HEAD/MANIFEST -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percolate/redset/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percolate/redset/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percolate/redset/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percolate/redset/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percolate/redset/HEAD/docs/examples.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percolate/redset/HEAD/docs/index.rst -------------------------------------------------------------------------------- /redset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percolate/redset/HEAD/redset/__init__.py -------------------------------------------------------------------------------- /redset/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percolate/redset/HEAD/redset/exceptions.py -------------------------------------------------------------------------------- /redset/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percolate/redset/HEAD/redset/interfaces.py -------------------------------------------------------------------------------- /redset/locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percolate/redset/HEAD/redset/locks.py -------------------------------------------------------------------------------- /redset/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percolate/redset/HEAD/redset/serializers.py -------------------------------------------------------------------------------- /redset/sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percolate/redset/HEAD/redset/sets.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percolate/redset/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_concurrency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percolate/redset/HEAD/tests/test_concurrency.py -------------------------------------------------------------------------------- /tests/test_serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percolate/redset/HEAD/tests/test_serializers.py -------------------------------------------------------------------------------- /tests/test_sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/percolate/redset/HEAD/tests/test_sets.py --------------------------------------------------------------------------------