Play with re-entrant trace

debug_tests
Tyler Goodlet 2020-07-29 20:48:15 -04:00
parent 8eb9a742dd
commit f7cd2be039
1 changed files with 4 additions and 3 deletions

View File

@ -4,6 +4,7 @@ import trio
async def bubble():
print('IN BUBBLE')
while True:
await trio.sleep(.1)
await tractor.breakpoint()
@ -27,4 +28,4 @@ async def main():
if __name__ == '__main__':
tractor.run(main, loglevel='critical', debug_mode=True)
tractor.run(main, loglevel='error', debug_mode=True)