summaryrefslogtreecommitdiffstats
path: root/Doc/reference/compound_stmts.rst
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2015-08-01 20:19:36 (GMT)
committerYury Selivanov <yselivanov@sprymix.com>2015-08-01 20:19:36 (GMT)
commit75b5ab5770ea0604b50ab21852749dba199e4fab (patch)
tree5cb4cdf1fd87bd4e3913f12481892d08650601c1 /Doc/reference/compound_stmts.rst
parent26f667676f6ea44c8d3e5a41f345acfaeca30bc2 (diff)
downloadcpython-75b5ab5770ea0604b50ab21852749dba199e4fab.zip
cpython-75b5ab5770ea0604b50ab21852749dba199e4fab.tar.gz
cpython-75b5ab5770ea0604b50ab21852749dba199e4fab.tar.bz2
docs: Fix productionlist for async def functions
Diffstat (limited to 'Doc/reference/compound_stmts.rst')
-rw-r--r--Doc/reference/compound_stmts.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/compound_stmts.rst b/Doc/reference/compound_stmts.rst
index 71f240f..01cfd6d 100644
--- a/Doc/reference/compound_stmts.rst
+++ b/Doc/reference/compound_stmts.rst
@@ -675,7 +675,7 @@ Coroutine function definition
-----------------------------
.. productionlist::
- async_funcdef: "async" `funcdef`
+ async_funcdef: [`decorators`] "async" "def" `funcname` "(" [`parameter_list`] ")" ["->" `expression`] ":" `suite`
.. index::
keyword: async