Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
54398d6a
Commit
54398d6a
authored
Mar 20, 2005
by
Fred Drake
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
helper code, mostly from Andy Harrington, for PEP 314 completion
parent
b1c96fd8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
112 additions
and
0 deletions
+112
-0
Lib/distutils/tests/test_versionpredicate.py
Lib/distutils/tests/test_versionpredicate.py
+9
-0
Lib/distutils/versionpredicate.py
Lib/distutils/versionpredicate.py
+103
-0
No files found.
Lib/distutils/tests/test_versionpredicate.py
0 → 100644
View file @
54398d6a
"""Tests harness for distutils.versionpredicate.
"""
import
distutils.versionpredicate
import
doctest
def
test_suite
():
return
doctest
.
DocTestSuite
(
distutils
.
versionpredicate
)
Lib/distutils/versionpredicate.py
0 → 100644
View file @
54398d6a
"""Module for parsing and testing package version predicate strings.
"""
import
re
import
version
import
operator
re_validPackage
=
re
.
compile
(
r"(?i)^\
s*([
a-z_]\
w*(?:
\.[a-z_]\
w*)*)(.*)
")
# (package) (rest)
re_paren = re.compile(r"
^
\
s
*
\
((.
*
)
\
)
\
s
*
$
") # (list) inside of parentheses
re_splitComparison = re.compile(r"
^
\
s
*
(
<=|>=|<|>|!=|==
)
\
s
*
([
^
\
s
,]
+
)
\
s
*
$
")
# (comp) (version)
def splitUp(pred):
"""Parse a single version comparison.
Return (comparison string, StrictVersion)
"""
res = re_splitComparison.match(pred)
if not res:
raise ValueError, "
Bad
package
restriction
syntax
:
" + pred
comp, verStr = res.groups()
return (comp, version.StrictVersion(verStr))
compmap = {"
<
": operator.lt, "
<=
": operator.le, "
==
": operator.eq,
"
>
": operator.gt, "
>=
": operator.ge, "
!=
": operator.ne}
class VersionPredicate:
"""Parse and test package version predicates.
>>> v = VersionPredicate("
pyepat
.
abc
(
>
1.0
,
<
3333.3
a1
,
!=
1555.1
b3
)
")
>>> print v
pyepat.abc (> 1.0, < 3333.3a1, != 1555.1b3)
>>> v.satisfied_by("
1.1
")
True
>>> v.satisfied_by("
1.4
")
True
>>> v.satisfied_by("
1.0
")
False
>>> v.satisfied_by("
4444.4
")
False
>>> v.satisfied_by("
1555.1
b3
")
False
>>> v = VersionPredicate("
pat
(
==
0.1
)
")
>>> v.satisfied_by("
0.1
")
True
>>> v.satisfied_by("
0.2
")
False
>>> v = VersionPredicate("
p1
.
p2
.
p3
.
p4
(
>=
1.0
,
<=
1.3
a1
,
!=
1.2
zb3
)
")
Traceback (most recent call last):
...
ValueError: invalid version number '1.2zb3'
"""
def __init__(self, versionPredicateStr):
"""Parse a version predicate string.
"""
# Fields:
# name: package name
# pred: list of (comparison string, StrictVersion)
versionPredicateStr = versionPredicateStr.strip()
if not versionPredicateStr:
raise ValueError, "
Empty
package
restriction
"
match = re_validPackage.match(versionPredicateStr)
if not match:
raise ValueError, "
Bad
package
name
in
" + versionPredicateStr
self.name, paren = match.groups()
paren = paren.strip()
if paren:
match = re_paren.match(paren)
if not match:
raise ValueError, "
Expected
parenthesized
list
:
" + paren
str = match.groups()[0]
self.pred = [splitUp(aPred) for aPred in str.split("
,
")]
if not self.pred:
raise ValueError("
Empty
Parenthesized
list
in
%
r"
% versionPredicateStr )
else:
self.pred=[]
def __str__(self):
if self.pred:
seq = [cond + "
" + str(ver) for cond, ver in self.pred]
return self.name + "
(
" + "
,
".join(seq) + "
)
"
else:
return self.name
def satisfied_by(self, version):
"""True if version is compatible with all the predicates in self.
The parameter version must be acceptable to the StrictVersion
constructor. It may be either a string or StrictVersion.
"""
for cond, ver in self.pred:
if not compmap[cond](version, ver):
return False
return True
def check_provision(value):
m = re.match("
[
a
-
zA
-
Z_
]
\
w
*
(
\
.[
a
-
zA
-
Z_
]
\
w
*
)
*
(
\
s
*
\
([
^
)]
+
\
))
?$
", value)
if not m:
raise ValueError("
illegal
provides
specification
:
%
r" % value)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment