diff options
author | Georg Brandl <georg@python.org> | 2012-03-10 08:27:30 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2012-03-10 08:27:30 (GMT) |
commit | 6aacc14e2926ad96760822d4ff3a711bee3ba181 (patch) | |
tree | 1a9e9a78d395ec4319c09ae8c70240d759e1e258 /Doc/reference | |
parent | ba108823b62a2eb3d5f6f067140ccebf6fee84bb (diff) | |
parent | e144c74e023b9caccd0a23ff718028cdd376cddd (diff) | |
download | cpython-6aacc14e2926ad96760822d4ff3a711bee3ba181.zip cpython-6aacc14e2926ad96760822d4ff3a711bee3ba181.tar.gz cpython-6aacc14e2926ad96760822d4ff3a711bee3ba181.tar.bz2 |
Merge with 3.2.
Diffstat (limited to 'Doc/reference')
-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 aea08e0..4ce7324 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: |