From b0539b27d9a195b78a5713cc3d4aa98ea07dbc53 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Mon, 12 May 2014 23:25:09 +0200 Subject: [PATCH] Issue #21485: remove unnecesary .flush() calls in the asyncio subprocess code example --- Doc/library/asyncio-subprocess.rst | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Doc/library/asyncio-subprocess.rst b/Doc/library/asyncio-subprocess.rst index 5b4ede61f60..dc48eb53e58 100644 --- a/Doc/library/asyncio-subprocess.rst +++ b/Doc/library/asyncio-subprocess.rst @@ -262,9 +262,7 @@ display the output:: stdout = stdout.decode('ascii').rstrip() print("Platform: %s" % stdout) else: - print("Python failed with exit code %s:" % exitcode) - sys.stdout.flush() - sys.stdout.buffer.flush() + print("Python failed with exit code %s:" % exitcode, flush=True) sys.stdout.buffer.write(stdout) sys.stdout.buffer.flush() loop.close()