bpo-33726, doc: Add short descriptions to PEP references in seealso (GH-7294)

This commit is contained in:
Andrés Delfino 2018-10-19 20:31:15 -03:00 committed by Victor Stinner
parent 6f17e51345
commit 0f14fc1a7c
2 changed files with 17 additions and 2 deletions

View file

@ -353,8 +353,15 @@ target, then the interpreter evaluates the target except for the last
.. seealso::
:pep:`526` - Variable and attribute annotation syntax
:pep:`526` - Syntax for Variable Annotations
The proposal that added syntax for annotating the types of variables
(including class variables and instance variables), instead of expressing
them through comments.
:pep:`484` - Type hints
The proposal that added the :mod:`typing` module to provide a standard
syntax for type annotations that can be used in static analysis tools and
IDEs.
.. _assert: