We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29e83cc commit b4f4ae6Copy full SHA for b4f4ae6
Lib/test/test_concurrent_futures/test_interpreter_pool.py
@@ -359,9 +359,12 @@ def test_blocking(self):
359
blocker = queues.create()
360
361
def run(taskid, ready, blocker):
362
+ print(f'{taskid}: starting', flush=True)
363
ready.put_nowait(taskid)
364
+ print(f'{taskid}: ready', flush=True)
365
# blocker.get(timeout=20) # blocking
366
blocker.get() # blocking
367
+ print(f'{taskid}: done', flush=True)
368
369
numtasks = 10
370
futures = []
0 commit comments