tractor/examples/debugging/root_actor_breakpoint_forev...

16 lines
227 B
Python

import trio
import tractor
async def main():
async with tractor.open_root_actor(
debug_mode=True,
):
while True:
await tractor.breakpoint()
if __name__ == '__main__':
trio.run(main)