diff options
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/asyncio/windows_events.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Lib/asyncio/windows_events.py b/Lib/asyncio/windows_events.py index 7f264e6..29750f1 100644 --- a/Lib/asyncio/windows_events.py +++ b/Lib/asyncio/windows_events.py @@ -811,9 +811,8 @@ class IocpProactor: next_msg = start_time + msg_update while self._cache: if next_msg <= time.monotonic(): - logger.debug('IocpProactor.close(): ' - 'loop is running after closing for %.1f seconds', - time.monotonic() - start_time) + logger.debug('%r is running after closing for %.1f seconds', + self, time.monotonic() - start_time) next_msg = time.monotonic() + msg_update # handle a few events, or timeout |