From ee2ff1a335b0a59f445959178c5d2a9802c5b3e4 Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Mon, 17 Sep 2018 23:27:27 -0700 Subject: [PATCH] Fix syntax error on Asyncio example in doc (GH-9387) (GH-9388) MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The `gather` method requires to close the parenthesis, but it is being closed twice. (cherry picked from commit 9c53fa6ad9cd23fb03867b4a1f74264c426c1772) Co-authored-by: Miguel Ángel García --- 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 9ca0dcd7f57c..2753998745ef 100644 --- a/Doc/library/asyncio-task.rst +++ b/Doc/library/asyncio-task.rst @@ -232,7 +232,7 @@ Running Tasks Concurrently factorial("A", 2), factorial("B", 3), factorial("C", 4), - )) + ) asyncio.run(main()) -- 2.47.3