fixed the comma operator (it's AND)

This commit is contained in:
Tarek Ziadé 2009-12-28 01:07:29 +00:00
parent b4784c9bdc
commit ed118482b1
1 changed files with 2 additions and 2 deletions

View File

@ -359,7 +359,7 @@ Examples::
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 @@ must be one of "<", ">", "<=", ">=", "==", "~=" and "!=".
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.