From 9c53fa6ad9cd23fb03867b4a1f74264c426c1772 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Miguel=20=C3=81ngel=20Garc=C3=ADa?= Date: Tue, 18 Sep 2018 08:01:26 +0200 Subject: [PATCH] Fix syntax error on Asyncio example in doc (GH-9387) The `gather` method requires to close the parenthesis, but it is being closed twice. --- Doc/library/asyncio-task.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/asyncio-task.rst b/Doc/library/asyncio-task.rst index 25a0768aa8da..d597234383db 100644 --- a/Doc/library/asyncio-task.rst +++ b/Doc/library/asyncio-task.rst @@ -238,7 +238,7 @@ Running Tasks Concurrently factorial("A", 2), factorial("B", 3), factorial("C", 4), - )) + ) asyncio.run(main()) -- 2.47.3