├── .gitignore ├── .travis.yml ├── LICENSE ├── README.rst ├── stack.py ├── test_slashes.py └── test_stack.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbinet/pillarstack/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbinet/pillarstack/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbinet/pillarstack/HEAD/README.rst -------------------------------------------------------------------------------- /stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbinet/pillarstack/HEAD/stack.py -------------------------------------------------------------------------------- /test_slashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbinet/pillarstack/HEAD/test_slashes.py -------------------------------------------------------------------------------- /test_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbinet/pillarstack/HEAD/test_stack.py --------------------------------------------------------------------------------