We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f51fb3c commit 12bdf0eCopy full SHA for 12bdf0e
Lib/test/test_asyncio/test_timeouts.py
@@ -156,6 +156,8 @@ async def test_nested_timeouts_loop_busy(self):
156
# After the inner timeout is an expensive operation which should
157
# be stopped by the outer timeout.
158
loop = asyncio.get_running_loop()
159
+ # Disable a message about long running task
160
+ loop.slow_callback_duration = 10
161
t0 = loop.time()
162
with self.assertRaises(TimeoutError):
163
async with asyncio.timeout(0.1): # (1)
0 commit comments