[Python-checkins] r77076 - peps/trunk/pep-0345.txt

tarek.ziade python-checkins at python.org
Mon Dec 28 01:08:53 CET 2009


Author: tarek.ziade
Date: Mon Dec 28 01:08:53 2009
New Revision: 77076

Log:
python.org's parser will do the PEP linking, no need to add reST on these PEP references

Modified:
   peps/trunk/pep-0345.txt

Modified: peps/trunk/pep-0345.txt
==============================================================================
--- peps/trunk/pep-0345.txt	(original)
+++ peps/trunk/pep-0345.txt	Mon Dec 28 01:08:53 2009
@@ -69,7 +69,7 @@
 :::::::
 
 A string containing the package's version number.  This
-field  must be in the format specified in `PEP 386`_.
+field  must be in the format specified in PEP 386.
 
 Example::
 
@@ -379,7 +379,7 @@
 
 Because they refer to non-Python software releases, version numbers
 for this field are **not** required to conform to the format
-specified in `PEP 386`_:  they should correspond to the
+specified in PEP 386:  they should correspond to the
 version scheme used by the external dependency.
 
 Notice that there's is no particular rule on the strings to be used.
@@ -414,7 +414,7 @@
 the string ``>1.0, !=1.3.4, <2.0`` is a legal version declaration.
 The comma (``,``) is equivalent to the **or** operator.
 
-Each version number must be in the format specified in `PEP 386`_.
+Each version number must be in the format specified in PEP 386.
 
 The range operator ("~=") is a special operator that can be used to
 define a range of versions by describing a MAJOR or a MAJOR.MINOR
@@ -428,11 +428,11 @@
 - ``~=2.5.2`` is equivalent to ``==2.5.2``
 
 The range operator is limited to the MAJOR and MINOR parts of
-a version string, as specified in `PEP 386`_. Post and pre-releases
+a version string, as specified in PEP 386. Post and pre-releases
 are not included in range operators.
 
 The ``Requires-External`` field can use the operators described in this
-section but since the version scheme might not be compatible with `PEP 386`_,
+section but since the version scheme might not be compatible with PEP 386,
 the range operator might not be appliable.
 
 For each field that uses a version, if no operator is provided, the
@@ -527,8 +527,6 @@
 
 .. _`Python Package Index`: http://pypi.python.org/pypi/
 
-.. _`PEP 386`: http://www.python.org/dev/peps/pep-0386
-
 .. [2] RFC 822 Long Header Fields:
    http://www.freesoft.org/CIE/RFC/822/7.htm
 


More information about the Python-checkins mailing list