├── .gitignore ├── LICENSE ├── README.md ├── poetry.lock ├── pyproject.toml ├── setup.py ├── tests ├── __init__.py └── test_throw_catch.py ├── throw_catch ├── __init__.py └── src.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sobolev5/throw-catch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sobolev5/throw-catch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sobolev5/throw-catch/HEAD/README.md -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sobolev5/throw-catch/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sobolev5/throw-catch/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sobolev5/throw-catch/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_throw_catch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sobolev5/throw-catch/HEAD/tests/test_throw_catch.py -------------------------------------------------------------------------------- /throw_catch/__init__.py: -------------------------------------------------------------------------------- 1 | from .src import throw, catch, clear 2 | -------------------------------------------------------------------------------- /throw_catch/src.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sobolev5/throw-catch/HEAD/throw_catch/src.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sobolev5/throw-catch/HEAD/tox.ini --------------------------------------------------------------------------------