From 976bf0deeb5c381f285c6c4d3dd98215e3bf9a86 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Wed, 15 Jun 2022 17:54:25 +0200 Subject: [PATCH] test_asyncore: Optimize capture_server() Remove time.sleep(0.01) in test_asyncore capture_server(). The sleep was redundant and inefficient, since the loop starts with select.select() which also implements a sleep (poll for socket data with a timeout). --- Lib/test/test_asyncore.py | 1 - 1 file changed, 1 deletion(-) diff --git a/Lib/test/test_asyncore.py b/Lib/test/test_asyncore.py index 1564221f857153..dd6b3a3648e6b9 100644 --- a/Lib/test/test_asyncore.py +++ b/Lib/test/test_asyncore.py @@ -87,7 +87,6 @@ def capture_server(evt, buf, serv): break if n <= 0: break - time.sleep(0.01) conn.close() finally: