@@ -243,31 +243,36 @@ async def iterate_one(label, extra=""):
243
243
244
244
sys .unraisablehook , prev_hook = sys .__unraisablehook__ , sys .unraisablehook
245
245
try :
246
+ before_hooks = sys .get_asyncgen_hooks ()
247
+
246
248
start_time = trio .current_time ()
247
249
with trio .move_on_after (loop_timeout ) as scope :
248
250
if loop_timeout == 0 :
249
251
scope .cancel ()
250
- async with trio_asyncio .open_loop () as loop :
251
- async with trio_asyncio .open_loop () as loop2 :
252
- async with trio .open_nursery () as nursery :
253
- # Make sure the iterate_one aio tasks don't get
254
- # cancelled before they start:
255
- nursery .cancel_scope .shield = True
256
- try :
257
- nursery .start_soon (iterate_one , "trio" )
258
- nursery .start_soon (
259
- loop .run_aio_coroutine , iterate_one ("asyncio" )
260
- )
261
- nursery .start_soon (
262
- loop2 .run_aio_coroutine , iterate_one ("asyncio" , "2" )
263
- )
264
- await loop .synchronize ()
265
- await loop2 .synchronize ()
266
- finally :
267
- nursery .cancel_scope .shield = False
268
- if not alive_on_exit and sys .implementation .name == "pypy" :
269
- for _ in range (5 ):
270
- gc .collect ()
252
+ async with trio_asyncio .open_loop () as loop , trio_asyncio .open_loop () as loop2 :
253
+ assert sys .get_asyncgen_hooks () != before_hooks
254
+ async with trio .open_nursery () as nursery :
255
+ # Make sure the iterate_one aio tasks don't get
256
+ # cancelled before they start:
257
+ nursery .cancel_scope .shield = True
258
+ try :
259
+ nursery .start_soon (iterate_one , "trio" )
260
+ nursery .start_soon (
261
+ loop .run_aio_coroutine , iterate_one ("asyncio" )
262
+ )
263
+ nursery .start_soon (
264
+ loop2 .run_aio_coroutine , iterate_one ("asyncio" , "2" )
265
+ )
266
+ await loop .synchronize ()
267
+ await loop2 .synchronize ()
268
+ finally :
269
+ nursery .cancel_scope .shield = False
270
+ if not alive_on_exit and sys .implementation .name == "pypy" :
271
+ for _ in range (5 ):
272
+ gc .collect ()
273
+
274
+ # Make sure we cleaned up properly once all trio-aio loops were closed
275
+ assert sys .get_asyncgen_hooks () == before_hooks
271
276
272
277
# asyncio agens should be finalized as soon as asyncio loop ends,
273
278
# regardless of liveness
0 commit comments