mirror of
https://github.com/python/cpython.git
synced 2025-07-24 19:54:21 +00:00
Fix syntax error on Asyncio example in doc (GH-9387)
The `gather` method requires to close the parenthesis, but it is being closed twice.
This commit is contained in:
parent
7bfbda46f4
commit
9c53fa6ad9
1 changed files with 1 additions and 1 deletions
|
@ -238,7 +238,7 @@ Running Tasks Concurrently
|
|||
factorial("A", 2),
|
||||
factorial("B", 3),
|
||||
factorial("C", 4),
|
||||
))
|
||||
)
|
||||
|
||||
asyncio.run(main())
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue