Thanks to visit codestin.com Credit goes to github.com
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 b1e4573 commit b91140fCopy full SHA for b91140f
Lib/asyncio/windows_events.py
@@ -811,9 +811,8 @@ def close(self):
811
next_msg = start_time + msg_update
812
while self._cache:
813
if next_msg <= time.monotonic():
814
- logger.debug('IocpProactor.close(): '
815
- 'loop is running after closing for %.1f seconds',
816
- time.monotonic() - start_time)
+ logger.debug('%r is running after closing for %.1f seconds',
+ self, time.monotonic() - start_time)
817
next_msg = time.monotonic() + msg_update
818
819
# handle a few events, or timeout
0 commit comments