Check whether a :mod:`~twisted.internet.reactor` is installed.
()
| 211 | |
| 212 | |
| 213 | def is_reactor_installed() -> bool: |
| 214 | """Check whether a :mod:`~twisted.internet.reactor` is installed.""" |
| 215 | return "twisted.internet.reactor" in sys.modules |
| 216 | |
| 217 | |
| 218 | def is_asyncio_reactor_installed() -> bool: |
no outgoing calls