/opt/alt/python27/lib64/python2.7/distutils
NameSizeModeActions
command/-0755rm
archive_util.py82190644editdlrm
archive_util.pyc77050644editdlrm
archive_util.pyo77050644editdlrm
bcppcompiler.py149410644editdlrm
bcppcompiler.pyc79990644editdlrm
bcppcompiler.pyo79990644editdlrm
ccompiler.py467260644editdlrm
ccompiler.pyc375970644editdlrm
ccompiler.pyo374560644editdlrm
cmd.py192700644editdlrm
cmd.pyc172850644editdlrm
cmd.pyo172850644editdlrm
config.py41340644editdlrm
config.pyc36560644editdlrm
config.pyo36560644editdlrm
core.py90190644editdlrm
core.pyc75880644editdlrm
core.pyo75880644editdlrm
cygwinccompiler.py177350644editdlrm
cygwinccompiler.pyc99810644editdlrm
cygwinccompiler.pyo99810644editdlrm
debug.py1620644editdlrm
debug.pyc2670644editdlrm
debug.pyo2670644editdlrm
dep_util.py35090644editdlrm
dep_util.pyc32320644editdlrm
dep_util.pyo32320644editdlrm
dir_util.py78680644editdlrm
dir_util.pyc68770644editdlrm
dir_util.pyo68770644editdlrm
dist.py500490644editdlrm
dist.pyc400470644editdlrm
dist.pyo400470644editdlrm
emxccompiler.py119310644editdlrm
emxccompiler.pyc75840644editdlrm
emxccompiler.pyo75840644editdlrm
errors.py34940644editdlrm
errors.pyc65450644editdlrm
errors.pyo65450644editdlrm
extension.py109040644editdlrm
extension.pyc74640644editdlrm
extension.pyo72380644editdlrm
fancy_getopt.py179480644editdlrm
fancy_getopt.pyc122310644editdlrm
fancy_getopt.pyo120540644editdlrm
filelist.py126890644editdlrm
filelist.pyc109770644editdlrm
filelist.pyo109770644editdlrm
file_util.py81310644editdlrm
file_util.pyc68150644editdlrm
file_util.pyo68150644editdlrm
log.py16860644editdlrm
log.pyc29420644editdlrm
log.pyo29420644editdlrm
msvc9compiler.py310040644editdlrm
msvc9compiler.pyc219000644editdlrm
msvc9compiler.pyo218270644editdlrm
msvccompiler.py236370644editdlrm
msvccompiler.pyc178630644editdlrm
msvccompiler.pyo178630644editdlrm
README2950644editdlrm
spawn.py86480644editdlrm
spawn.pyc65180644editdlrm
spawn.pyo65180644editdlrm
sysconfig.py177070644editdlrm
sysconfig.py.debug-build176220644editdlrm
sysconfig.pyc136090644editdlrm
sysconfig.pyo136090644editdlrm
text_file.py124280644editdlrm
text_file.pyc94020644editdlrm
text_file.pyo94020644editdlrm
unixccompiler.py142220644editdlrm
unixccompiler.py.distutils-rpath136770644editdlrm
unixccompiler.pyc83850644editdlrm
unixccompiler.pyo83850644editdlrm
util.py182360644editdlrm
util.pyc145680644editdlrm
util.pyo145680644editdlrm
version.py114330644editdlrm
version.pyc74030644editdlrm
version.pyo74030644editdlrm
versionpredicate.py50950644editdlrm
versionpredicate.pyc56330644editdlrm
versionpredicate.pyo56330644editdlrm
__init__.py2360644editdlrm
__init__.pyc4280644editdlrm
__init__.pyo4280644editdlrm
Edit: /opt/alt/python27/lib64/python2.7/distutils/versionpredicate.pyc (5633B)
ó Þ[ bc@sÈdZddlZddlZddlZejdƒZejdƒZejdƒZd„Z iej d6ej d6ej d 6ej d 6ejd 6ejd 6Zd dd„ƒYZdad„ZdS(sBModule for parsing and testing package version predicate strings. iÿÿÿÿNs'(?i)^\s*([a-z_]\w*(?:\.[a-z_]\w*)*)(.*)s^\s*\((.*)\)\s*$s%^\s*(<=|>=|<|>|!=|==)\s*([^\s,]+)\s*$cCsPtj|ƒ}|s(td|ƒ‚n|jƒ\}}|tjj|ƒfS(sVParse a single version comparison. Return (comparison string, StrictVersion) s"bad package restriction syntax: %r(tre_splitComparisontmatcht ValueErrortgroupst distutilstversiont StrictVersion(tpredtrestcomptverStr((s?/opt/alt/python27/lib64/python2.7/distutils/versionpredicate.pytsplitUps ts>=s!=tVersionPredicatecBs)eZdZd„Zd„Zd„ZRS(s»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)' cCsÿ|jƒ}|s!tdƒ‚ntj|ƒ}|sItd|ƒ‚n|jƒ\|_}|jƒ}|ròtj|ƒ}|s˜td|ƒ‚n|jƒd}g|jdƒD]}t|ƒ^q¸|_ |j sûtd|ƒ‚qûn g|_ dS(s*Parse a version predicate string. sempty package restrictionsbad package name in %rsexpected parenthesized list: %rit,sempty parenthesized list in %rN( tstripRtre_validPackageRRtnametre_parentsplitR R(tselftversionPredicateStrRtparentstrtaPred((s?/opt/alt/python27/lib64/python2.7/distutils/versionpredicate.pyt__init___s$  + cCs`|jrUg|jD] \}}|dt|ƒ^q}|jddj|ƒdS|jSdS(Nt s (s, t)(RRRtjoin(Rtcondtvertseq((s?/opt/alt/python27/lib64/python2.7/distutils/versionpredicate.pyt__str__zs 0cCs5x.|jD]#\}}t|||ƒs tSq WtS(sÏ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. (RtcompmaptFalsetTrue(RRRR((s?/opt/alt/python27/lib64/python2.7/distutils/versionpredicate.pyt satisfied_bys(t__name__t __module__t__doc__RR!R%(((s?/opt/alt/python27/lib64/python2.7/distutils/versionpredicate.pyRs?  cCs•tdkrtjdƒan|jƒ}tj|ƒ}|sRtd|ƒ‚n|jdƒpdd}|r‚tj j |ƒ}n|jdƒ|fS(s9Return 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')) s=([a-zA-Z_]\w*(?:\.[a-zA-Z_]\w*)*)(?:\s*\(\s*([^)\s]+)\s*\))?$s"illegal provides specification: %riiN( t _provision_rxtNonetretcompileRRRtgroupRRR(tvaluetmR((s?/opt/alt/python27/lib64/python2.7/distutils/versionpredicate.pytsplit_provisionŽs   ((R(R+tdistutils.versionRtoperatorR,RRRR tlttleteqtgttgetneR"RR*R)R0(((s?/opt/alt/python27/lib64/python2.7/distutils/versionpredicate.pyts    !!n