From e5f8d610aac90b9a52ff36b2b8f434dfe8573b5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tarek=20Ziad=C3=A9?= Date: Sat, 13 Feb 2010 20:16:20 +0000 Subject: [PATCH] removed the ~= operator --- pep-0345.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pep-0345.txt b/pep-0345.txt index 39616de86..234112c2f 100644 --- a/pep-0345.txt +++ b/pep-0345.txt @@ -401,7 +401,7 @@ Version Specifiers Version specifiers are a series of conditional operators and version numbers, separated by commas. Conditional operators -must be one of "<", ">", "<=", ">=", "==", "~=" and "!=". +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.