From: Yury Selivanov Date: Sat, 1 Aug 2015 20:19:36 +0000 (-0400) Subject: docs: Fix productionlist for async def functions X-Git-Tag: v3.5.0rc1~58 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=75b5ab5770ea0604b50ab21852749dba199e4fab;p=thirdparty%2FPython%2Fcpython.git docs: Fix productionlist for async def functions --- diff --git a/Doc/reference/compound_stmts.rst b/Doc/reference/compound_stmts.rst index 71f240f2d0a5..01cfd6dbd256 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