diff options
author | Georg Brandl <georg@python.org> | 2012-03-10 09:22:47 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2012-03-10 09:22:47 +0100 |
commit | 64a40949cf564a690b0263d9b0c18204bceff233 (patch) | |
tree | e76e5db2759f875d1e24dd27d6e9a2da628e96a4 | |
parent | 065dedaf474279e5c598ba23216887212e9fd29e (diff) | |
download | cpython-git-64a40949cf564a690b0263d9b0c18204bceff233.tar.gz |
Closes #14186: add link to PEP 3107 (function annotations) to the function definition section.
-rw-r--r-- | Doc/reference/compound_stmts.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/reference/compound_stmts.rst b/Doc/reference/compound_stmts.rst index aea08e0805..4ce7324550 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: |