├── .gitignore ├── LICENSE.txt ├── README.rst ├── setup.py └── switchcase ├── __init__.py ├── switchcase.py └── tests ├── __init__.py └── test_switch.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssanderson/switchcase/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssanderson/switchcase/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssanderson/switchcase/HEAD/README.rst -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssanderson/switchcase/HEAD/setup.py -------------------------------------------------------------------------------- /switchcase/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssanderson/switchcase/HEAD/switchcase/__init__.py -------------------------------------------------------------------------------- /switchcase/switchcase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssanderson/switchcase/HEAD/switchcase/switchcase.py -------------------------------------------------------------------------------- /switchcase/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /switchcase/tests/test_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ssanderson/switchcase/HEAD/switchcase/tests/test_switch.py --------------------------------------------------------------------------------