tractor/examples/debugging/root_actor_error.py

14 lines
184 B
Python
Raw Permalink 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():
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)