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

tarek.ziade python-checkins at python.org
Mon Dec 28 02:07:29 CET 2009


Author: tarek.ziade
Date: Mon Dec 28 02:07:29 2009
New Revision: 77080

Log:
fixed the comma operator (it's AND)

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 02:07:29 2009
@@ -359,7 +359,7 @@
     Requires-Python: 2.5
     Requires-Python: >2.1
     Requires-Python: >=2.3.4
-    Requires-Python: 2.5, 2.6
+    Requires-Python: >=2.5,<2.7
 
 
 Requires-External (multiple use)
@@ -411,7 +411,7 @@
 
 Any number of conditional operators can be specified, e.g.
 the string ">1.0, !=1.3.4, <2.0" is a legal version declaration.
-The comma (",") is equivalent to the **or** operator.
+The comma (",") is equivalent to the **and** operator.
 
 Each version number must be in the format specified in PEP 386.
 


More information about the Python-checkins mailing list