├── .gitignore ├── .pylintrc ├── .vscode └── settings.json ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── azure-pipelines.yml ├── bench ├── runner.sh └── sample.py ├── examples ├── README.md ├── option_examples.py └── result_examples.py ├── scripts └── check_ready_to_distribute.py ├── setup.cfg ├── setup.py ├── src └── safetywrap │ ├── __init__.py │ ├── _impl.py │ ├── _interface.py │ └── py.typed ├── tests ├── __init__.py ├── test_infra.py ├── test_meta.py ├── test_option.py └── test_result.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mplanchard/safetywrap/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mplanchard/safetywrap/HEAD/.pylintrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mplanchard/safetywrap/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mplanchard/safetywrap/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mplanchard/safetywrap/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mplanchard/safetywrap/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mplanchard/safetywrap/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mplanchard/safetywrap/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /bench/runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mplanchard/safetywrap/HEAD/bench/runner.sh -------------------------------------------------------------------------------- /bench/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mplanchard/safetywrap/HEAD/bench/sample.py -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mplanchard/safetywrap/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/option_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mplanchard/safetywrap/HEAD/examples/option_examples.py -------------------------------------------------------------------------------- /examples/result_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mplanchard/safetywrap/HEAD/examples/result_examples.py -------------------------------------------------------------------------------- /scripts/check_ready_to_distribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mplanchard/safetywrap/HEAD/scripts/check_ready_to_distribute.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mplanchard/safetywrap/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mplanchard/safetywrap/HEAD/setup.py -------------------------------------------------------------------------------- /src/safetywrap/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mplanchard/safetywrap/HEAD/src/safetywrap/__init__.py -------------------------------------------------------------------------------- /src/safetywrap/_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mplanchard/safetywrap/HEAD/src/safetywrap/_impl.py -------------------------------------------------------------------------------- /src/safetywrap/_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mplanchard/safetywrap/HEAD/src/safetywrap/_interface.py -------------------------------------------------------------------------------- /src/safetywrap/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Test modules for result types.""" 2 | -------------------------------------------------------------------------------- /tests/test_infra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mplanchard/safetywrap/HEAD/tests/test_infra.py -------------------------------------------------------------------------------- /tests/test_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mplanchard/safetywrap/HEAD/tests/test_meta.py -------------------------------------------------------------------------------- /tests/test_option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mplanchard/safetywrap/HEAD/tests/test_option.py -------------------------------------------------------------------------------- /tests/test_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mplanchard/safetywrap/HEAD/tests/test_result.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mplanchard/safetywrap/HEAD/tox.ini --------------------------------------------------------------------------------