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 77cf769 commit 6f7dde4Copy full SHA for 6f7dde4
1 file changed
Lib/asyncio/tools.py
@@ -250,11 +250,6 @@ def _get_awaited_by_tasks(pid: int, retries: int = 3) -> list:
250
sys.exit(1)
251
except _TRANSIENT_ERRORS as e:
252
if attempt < retries:
253
- print(
254
- f"Transient error while reading process state "
255
- f"(attempt {attempt + 1}/{retries + 1}), retrying...",
256
- file=sys.stderr,
257
- )
258
continue
259
if isinstance(e, RuntimeError):
260
while e.__context__ is not None:
0 commit comments