tractor/examples/debugging/root_actor_error.py

18 lines
273 B
Python
Raw Normal View History

2021-02-24 18:39:14 +00:00
import trio
2020-10-03 23:35:18 +00:00
import tractor
async def main() -> None:
'''
Raise an assertion error from the debug-enabled root actor.
'''
2021-02-24 18:39:14 +00:00
async with tractor.open_root_actor(
debug_mode=True,
):
assert 0
2020-10-03 23:35:18 +00:00
if __name__ == '__main__':
2021-02-24 18:39:14 +00:00
trio.run(main)