[Python-checkins] Mention both relevant PEPs in function annotations tutorial (GH-6304)

Miss Islington (bot) webhook-mailer at python.org
Wed Apr 25 14:02:10 EDT 2018


https://github.com/python/cpython/commit/0d19fa917c17150f02280b4583957510f06d7419
commit: 0d19fa917c17150f02280b4583957510f06d7419
branch: 3.6
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2018-04-25T11:02:07-07:00
summary:

Mention both relevant PEPs in function annotations tutorial (GH-6304)


Patch by Neeraj Badlani.
(cherry picked from commit 643ff711faf417fc3428897dc7d36250ad2cb0e5)

Co-authored-by: Neeraj Badlani <neerajbadlani at gmail.com>

files:
M Doc/tutorial/controlflow.rst

diff --git a/Doc/tutorial/controlflow.rst b/Doc/tutorial/controlflow.rst
index 30ef159f8b36..4bcdafd73352 100644
--- a/Doc/tutorial/controlflow.rst
+++ b/Doc/tutorial/controlflow.rst
@@ -678,8 +678,8 @@ Function Annotations
    single: -> (return annotation assignment)
 
 :ref:`Function annotations <function>` are completely optional metadata
-information about the types used by user-defined functions (see :pep:`484`
-for more information).
+information about the types used by user-defined functions (see :pep:`3107` and
+:pep:`484` for more information).
 
 Annotations are stored in the :attr:`__annotations__` attribute of the function
 as a dictionary and have no effect on any other part of the function.  Parameter



More information about the Python-checkins mailing list