tractor/examples/debugging/root_actor_breakpoint_forev...

16 lines
227 B
Python
Raw Normal View History

2021-02-24 18:39:14 +00:00
import trio
import tractor
async def main():
2021-02-24 18:39:14 +00:00
async with tractor.open_root_actor(
debug_mode=True,
):
while True:
await tractor.breakpoint()
if __name__ == '__main__':
2021-02-24 18:39:14 +00:00
trio.run(main)