From: Georg Brandl Date: Sat, 10 Mar 2012 08:22:47 +0000 (+0100) Subject: Closes #14186: add link to PEP 3107 (function annotations) to the function definition... X-Git-Tag: v3.3.0a2~246^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=64a40949cf564a690b0263d9b0c18204bceff233;p=thirdparty%2FPython%2Fcpython.git Closes #14186: add link to PEP 3107 (function annotations) to the function definition section. --- diff --git a/Doc/reference/compound_stmts.rst b/Doc/reference/compound_stmts.rst index aea08e080538..4ce7324550ee 100644 --- a/Doc/reference/compound_stmts.rst +++ b/Doc/reference/compound_stmts.rst @@ -535,6 +535,11 @@ returned or passed around. Free variables used in the nested function can access the local variables of the function containing the def. See section :ref:`naming` for details. +.. seealso:: + + :pep:`3107` - Function Annotations + The original specification for function annotations. + .. _class: