From: Georg Brandl Date: Sun, 21 Sep 2008 07:40:25 +0000 (+0000) Subject: Remove stray question mark. X-Git-Tag: v3.0rc2~169 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=33d1ae8563fcfc11f3e6ffab1ac63d2a36819af8;p=python Remove stray question mark. --- diff --git a/Doc/reference/compound_stmts.rst b/Doc/reference/compound_stmts.rst index 52d12b7666..d9d11b55db 100644 --- a/Doc/reference/compound_stmts.rst +++ b/Doc/reference/compound_stmts.rst @@ -410,7 +410,7 @@ A function definition defines a user-defined function object (see section :ref:`types`): .. productionlist:: - funcdef: [`decorators`] "def" `funcname` "(" [`parameter_list`] ")" ["->" `expression`]? ":" `suite` + funcdef: [`decorators`] "def" `funcname` "(" [`parameter_list`] ")" ["->" `expression`] ":" `suite` decorators: `decorator`+ decorator: "@" `dotted_name` ["(" [`argument_list` [","]] ")"] NEWLINE dotted_name: `identifier` ("." `identifier`)*