Metadata-Version: 2.3 Name: async_interrupt Version: 1.2.2 Summary: Context manager to raise an exception when a future is done License: Apache-2.0 Author: J. Nick Koston Author-email: nick@koston.org Requires-Python: >=3.9 Classifier: Development Status :: 5 - Production/Stable Classifier: Intended Audience :: Developers Classifier: License :: OSI Approved :: Apache Software License Classifier: Natural Language :: English Classifier: Operating System :: OS Independent Classifier: Programming Language :: Python :: 3 Classifier: Programming Language :: Python :: 3.9 Classifier: Programming Language :: Python :: 3.10 Classifier: Programming Language :: Python :: 3.11 Classifier: Programming Language :: Python :: 3.12 Classifier: Programming Language :: Python :: 3.13 Classifier: Topic :: Software Development :: Libraries Project-URL: Bug Tracker, https://github.com/bluetooth-devices/async_interrupt/issues Project-URL: Changelog, https://github.com/bluetooth-devices/async_interrupt/blob/main/CHANGELOG.md Project-URL: Repository, https://github.com/bluetooth-devices/async_interrupt Description-Content-Type: text/markdown # async_interrupt

CI Status Test coverage percentage

Poetry black pre-commit

PyPI Version Supported Python versions License

Interrupt context manager for asyncio. This module provides a context manager that can be used to interrupt a block of code as soon as possible when a future is done. The purpose is to raise as soon as possible to avoid any race conditions. This is based loosely on async_timeout by Andrew Svetlov and cpython asyncio.timeout ## Usage ```python async with interrupt(future, ValueError, "message"): future.set_result(None) await asyncio.sleep(0) ``` ## Installation Install this via pip (or your favourite package manager): `pip install async_interrupt` ## Contributors ✨ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)): This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome! ## Credits This package was created with [Copier](https://copier.readthedocs.io/) and the [browniebroke/pypackage-template](https://github.com/browniebroke/pypackage-template) project template.