summaryrefslogtreecommitdiffstats
path: root/Doc/reference
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-03-31 12:31:20 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-03-31 12:31:20 (GMT)
commit7b1e5a7722efe487c8f2a78183c909ecba30b2a5 (patch)
tree3229a4004e38f594fe5abe7515d27ea237c4f8f9 /Doc/reference
parentf810767bd37b57b3051b4b47a32d96311736b4d3 (diff)
parente4ba8725437e646004337c6a68aed493f2eb2023 (diff)
downloadcpython-7b1e5a7722efe487c8f2a78183c909ecba30b2a5.zip
cpython-7b1e5a7722efe487c8f2a78183c909ecba30b2a5.tar.gz
cpython-7b1e5a7722efe487c8f2a78183c909ecba30b2a5.tar.bz2
Remove redundant leading zeroes in PEP references.
Diffstat (limited to 'Doc/reference')
-rw-r--r--Doc/reference/compound_stmts.rst2
-rw-r--r--Doc/reference/datamodel.rst2
-rw-r--r--Doc/reference/expressions.rst6
3 files changed, 5 insertions, 5 deletions
diff --git a/Doc/reference/compound_stmts.rst b/Doc/reference/compound_stmts.rst
index 00e6476..513cc15 100644
--- a/Doc/reference/compound_stmts.rst
+++ b/Doc/reference/compound_stmts.rst
@@ -439,7 +439,7 @@ is equivalent to ::
.. seealso::
- :pep:`0343` - The "with" statement
+ :pep:`343` - The "with" statement
The specification, background, and examples for the Python :keyword:`with`
statement.
diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst
index f1beadb..b67ccbb 100644
--- a/Doc/reference/datamodel.rst
+++ b/Doc/reference/datamodel.rst
@@ -2189,7 +2189,7 @@ For more information on context managers, see :ref:`typecontextmanager`.
.. seealso::
- :pep:`0343` - The "with" statement
+ :pep:`343` - The "with" statement
The specification, background, and examples for the Python :keyword:`with`
statement.
diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst
index 99fa037..dddedef 100644
--- a/Doc/reference/expressions.rst
+++ b/Doc/reference/expressions.rst
@@ -378,14 +378,14 @@ on the right hand side of an assignment statement.
.. seealso::
- :pep:`0255` - Simple Generators
+ :pep:`255` - Simple Generators
The proposal for adding generators and the :keyword:`yield` statement to Python.
- :pep:`0342` - Coroutines via Enhanced Generators
+ :pep:`342` - Coroutines via Enhanced Generators
The proposal to enhance the API and syntax of generators, making them
usable as simple coroutines.
- :pep:`0380` - Syntax for Delegating to a Subgenerator
+ :pep:`380` - Syntax for Delegating to a Subgenerator
The proposal to introduce the :token:`yield_from` syntax, making delegation
to sub-generators easy.