[Python-checkins] peps: PEP 426: fix editing oversight

nick.coghlan python-checkins at python.org
Sat Feb 23 16:10:57 CET 2013


http://hg.python.org/peps/rev/bc9f75975818
changeset:   4767:bc9f75975818
user:        Nick Coghlan <ncoghlan at gmail.com>
date:        Sun Feb 24 01:10:49 2013 +1000
summary:
  PEP 426: fix editing oversight

files:
  pep-0426.txt |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/pep-0426.txt b/pep-0426.txt
--- a/pep-0426.txt
+++ b/pep-0426.txt
@@ -1006,9 +1006,9 @@
 version that is expected to be compatible with the specified version.
 
 For a given release identifier ``V.N``, the compatible release clause is
-equivalent to the pair of comparison clauses::
+approximately equivalent to the pair of comparison clauses::
 
-    >= V.N, < V+1
+    >= V.N, < V+1.dev0
 
 where ``V+1`` is the next version after ``V``, as determined by
 incrementing the last numeric component in ``V``. For example,

-- 
Repository URL: http://hg.python.org/peps


More information about the Python-checkins mailing list