Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
0f14fc1a
Commit
0f14fc1a
authored
Oct 19, 2018
by
Andrés Delfino
Committed by
Victor Stinner
Oct 20, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bpo-33726, doc: Add short descriptions to PEP references in seealso (GH-7294)
parent
6f17e513
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
2 deletions
+17
-2
Doc/reference/compound_stmts.rst
Doc/reference/compound_stmts.rst
+9
-1
Doc/reference/simple_stmts.rst
Doc/reference/simple_stmts.rst
+8
-1
No files found.
Doc/reference/compound_stmts.rst
View file @
0f14fc1a
...
...
@@ -681,8 +681,14 @@ can be used to create instance variables with different implementation details.
.. seealso::
:pep:`3115` - Metaclasses in Python 3
:pep:`3115` - Metaclasses in Python 3000
The proposal that changed the declaration of metaclasses to the current
syntax, and the semantics for how classes with metaclasses are
constructed.
:pep:`3129` - Class Decorators
The proposal that added class decorators. Function and method decorators
were introduced in :pep:`318`.
.. _async:
...
...
@@ -809,6 +815,8 @@ coroutine.
.. seealso::
:pep:`492` - Coroutines with async and await syntax
The proposal that made coroutines a proper standalone concept in Python,
and added supporting syntax.
.. rubric:: Footnotes
...
...
Doc/reference/simple_stmts.rst
View file @
0f14fc1a
...
...
@@ -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
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment