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/python3.8/distutils/__pycache__/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //lib64/python3.8/distutils/__pycache__/version.cpython-38.pyc
U

e5d90�@s>dZddlZGdd�d�ZGdd�de�ZGdd�de�ZdS)	a�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)
�Nc@sJeZdZdZddd�Zdd�Zdd�Zd	d
�Zdd�Zd
d�Z	dd�Z
dS)�Versionz�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.
    NcCs|r|�|�dS�N��parse��self�vstring�r	�)/usr/lib64/python3.8/distutils/version.py�__init__&szVersion.__init__cCsd|jjt|�fS)Nz	%s ('%s'))�	__class__�__name__�str�rr	r	r
�__repr__*szVersion.__repr__cCs|�|�}|tkr|S|dkS�Nr��_cmp�NotImplemented�r�other�cr	r	r
�__eq__-s
zVersion.__eq__cCs|�|�}|tkr|S|dkSrrrr	r	r
�__lt__3s
zVersion.__lt__cCs|�|�}|tkr|S|dkSrrrr	r	r
�__le__9s
zVersion.__le__cCs|�|�}|tkr|S|dkSrrrr	r	r
�__gt__?s
zVersion.__gt__cCs|�|�}|tkr|S|dkSrrrr	r	r
�__ge__Es
zVersion.__ge__)N)r
�
__module__�__qualname__�__doc__rrrrrrrr	r	r	r
rs
rc@s<eZdZdZe�dejejB�Zdd�Z	dd�Z
dd�Zd	S)
�
StrictVersiona?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.
    z)^(\d+) \. (\d+) (\. (\d+))? ([ab](\d+))?$cCs�|j�|�}|std|��|�ddddd�\}}}}}|rTttt|||g��|_nttt||g��d|_|r�|dt|�f|_nd|_dS)	Nzinvalid version number '%s'�����)rr)	�
version_re�match�
ValueError�group�tuple�map�int�version�
prerelease)rrr'�major�minorZpatchr.Zprerelease_numr	r	r
r�s�zStrictVersion.parsecCsb|jddkr*d�tt|jdd���}nd�tt|j��}|jr^||jdt|jd�}|S)Nr"r�.r!)r-�joinr+rr.rr	r	r
�__str__�szStrictVersion.__str__cCs�t|t�rt|�}|j|jkr2|j|jkr.dSdS|jsB|jsBdS|jrR|jsRdS|jsb|jrbdS|jr�|jr�|j|jkr~dS|j|jkr�dSdSnds�td��dS)N���r!rFznever get here)�
isinstancerr r-r.�AssertionError�rrr	r	r
r�s&
zStrictVersion._cmpN)r
rrr�re�compile�VERBOSE�ASCIIr&rr3rr	r	r	r
r ]s#
�
r c@sHeZdZdZe�dej�Zddd�Zdd�Z	dd	�Z
d
d�Zdd
�ZdS)�LooseVersiona�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").
    z(\d+ | [a-z]+ | \.)NcCs|r|�|�dSrrrr	r	r
r.szLooseVersion.__init__c	Cs^||_dd�|j�|�D�}t|�D].\}}zt|�||<Wq$tk
rPYq$Xq$||_dS)NcSsg|]}|r|dkr|�qS)r1r	)�.0�xr	r	r
�
<listcomp>8s�z&LooseVersion.parse.<locals>.<listcomp>)r�component_re�split�	enumerater,r(r-)rrZ
components�i�objr	r	r
r3szLooseVersion.parsecCs|jSr)rrr	r	r
r3CszLooseVersion.__str__cCsdt|�S)NzLooseVersion ('%s'))rrr	r	r
rGszLooseVersion.__repr__cCsFt|t�rt|�}|j|jkr"dS|j|jkr2dS|j|jkrBdSdS)Nrr4r!)r5rr<r-r7r	r	r
rKs
zLooseVersion._cmp)N)
r
rrrr8r9r:r@rrr3rrr	r	r	r
r<s
r<)rr8rr r<r	r	r	r
�<module>
s
>/
Name
Size
Permissions
Options
__init__.cpython-38.opt-1.pyc
0.377 KB
-rw-r--r--
__init__.cpython-38.opt-2.pyc
0.199 KB
-rw-r--r--
__init__.cpython-38.pyc
0.377 KB
-rw-r--r--
_msvccompiler.cpython-38.opt-1.pyc
12.606 KB
-rw-r--r--
_msvccompiler.cpython-38.opt-2.pyc
11.483 KB
-rw-r--r--
_msvccompiler.cpython-38.pyc
12.664 KB
-rw-r--r--
archive_util.cpython-38.opt-1.pyc
6.388 KB
-rw-r--r--
archive_util.cpython-38.opt-2.pyc
4.394 KB
-rw-r--r--
archive_util.cpython-38.pyc
6.388 KB
-rw-r--r--
bcppcompiler.cpython-38.opt-1.pyc
6.372 KB
-rw-r--r--
bcppcompiler.cpython-38.opt-2.pyc
6.091 KB
-rw-r--r--
bcppcompiler.cpython-38.pyc
6.372 KB
-rw-r--r--
ccompiler.cpython-38.opt-1.pyc
32.395 KB
-rw-r--r--
ccompiler.cpython-38.opt-2.pyc
16.471 KB
-rw-r--r--
ccompiler.cpython-38.pyc
32.519 KB
-rw-r--r--
cmd.cpython-38.opt-1.pyc
13.623 KB
-rw-r--r--
cmd.cpython-38.opt-2.pyc
7.895 KB
-rw-r--r--
cmd.cpython-38.pyc
13.623 KB
-rw-r--r--
config.cpython-38.opt-1.pyc
3.429 KB
-rw-r--r--
config.cpython-38.opt-2.pyc
3.047 KB
-rw-r--r--
config.cpython-38.pyc
3.429 KB
-rw-r--r--
core.cpython-38.opt-1.pyc
6.461 KB
-rw-r--r--
core.cpython-38.opt-2.pyc
3.153 KB
-rw-r--r--
core.cpython-38.pyc
6.461 KB
-rw-r--r--
cygwinccompiler.cpython-38.opt-1.pyc
8.412 KB
-rw-r--r--
cygwinccompiler.cpython-38.opt-2.pyc
6.82 KB
-rw-r--r--
cygwinccompiler.cpython-38.pyc
8.412 KB
-rw-r--r--
debug.cpython-38.opt-1.pyc
0.191 KB
-rw-r--r--
debug.cpython-38.opt-2.pyc
0.191 KB
-rw-r--r--
debug.cpython-38.pyc
0.191 KB
-rw-r--r--
dep_util.cpython-38.opt-1.pyc
2.652 KB
-rw-r--r--
dep_util.cpython-38.opt-2.pyc
1.242 KB
-rw-r--r--
dep_util.cpython-38.pyc
2.652 KB
-rw-r--r--
dir_util.cpython-38.opt-1.pyc
5.688 KB
-rw-r--r--
dir_util.cpython-38.opt-2.pyc
3.366 KB
-rw-r--r--
dir_util.cpython-38.pyc
5.688 KB
-rw-r--r--
dist.cpython-38.opt-1.pyc
33.686 KB
-rw-r--r--
dist.cpython-38.opt-2.pyc
24.612 KB
-rw-r--r--
dist.cpython-38.pyc
33.686 KB
-rw-r--r--
errors.cpython-38.opt-1.pyc
5.129 KB
-rw-r--r--
errors.cpython-38.opt-2.pyc
2.641 KB
-rw-r--r--
errors.cpython-38.pyc
5.129 KB
-rw-r--r--
extension.cpython-38.opt-1.pyc
6.763 KB
-rw-r--r--
extension.cpython-38.opt-2.pyc
3.354 KB
-rw-r--r--
extension.cpython-38.pyc
6.763 KB
-rw-r--r--
fancy_getopt.cpython-38.opt-1.pyc
10.268 KB
-rw-r--r--
fancy_getopt.cpython-38.opt-2.pyc
7.53 KB
-rw-r--r--
fancy_getopt.cpython-38.pyc
10.408 KB
-rw-r--r--
file_util.cpython-38.opt-1.pyc
5.796 KB
-rw-r--r--
file_util.cpython-38.opt-2.pyc
3.709 KB
-rw-r--r--
file_util.cpython-38.pyc
5.796 KB
-rw-r--r--
filelist.cpython-38.opt-1.pyc
9.55 KB
-rw-r--r--
filelist.cpython-38.opt-2.pyc
6.746 KB
-rw-r--r--
filelist.cpython-38.pyc
9.638 KB
-rw-r--r--
log.cpython-38.opt-1.pyc
2.263 KB
-rw-r--r--
log.cpython-38.opt-2.pyc
2.203 KB
-rw-r--r--
log.cpython-38.pyc
2.263 KB
-rw-r--r--
msvc9compiler.cpython-38.opt-1.pyc
17.044 KB
-rw-r--r--
msvc9compiler.cpython-38.opt-2.pyc
15.461 KB
-rw-r--r--
msvc9compiler.cpython-38.pyc
17.102 KB
-rw-r--r--
msvccompiler.cpython-38.opt-1.pyc
14.38 KB
-rw-r--r--
msvccompiler.cpython-38.opt-2.pyc
12.842 KB
-rw-r--r--
msvccompiler.cpython-38.pyc
14.38 KB
-rw-r--r--
spawn.cpython-38.opt-1.pyc
4.988 KB
-rw-r--r--
spawn.cpython-38.opt-2.pyc
3.715 KB
-rw-r--r--
spawn.cpython-38.pyc
4.988 KB
-rw-r--r--
sysconfig.cpython-38.opt-1.pyc
11.857 KB
-rw-r--r--
sysconfig.cpython-38.opt-2.pyc
8.454 KB
-rw-r--r--
sysconfig.cpython-38.pyc
11.857 KB
-rw-r--r--
text_file.cpython-38.opt-1.pyc
8.243 KB
-rw-r--r--
text_file.cpython-38.opt-2.pyc
3.265 KB
-rw-r--r--
text_file.cpython-38.pyc
8.243 KB
-rw-r--r--
unixccompiler.cpython-38.opt-1.pyc
6.822 KB
-rw-r--r--
unixccompiler.cpython-38.opt-2.pyc
6.208 KB
-rw-r--r--
unixccompiler.cpython-38.pyc
6.822 KB
-rw-r--r--
util.cpython-38.opt-1.pyc
15.184 KB
-rw-r--r--
util.cpython-38.opt-2.pyc
9.438 KB
-rw-r--r--
util.cpython-38.pyc
15.184 KB
-rw-r--r--
version.cpython-38.opt-1.pyc
7.098 KB
-rw-r--r--
version.cpython-38.opt-2.pyc
3.89 KB
-rw-r--r--
version.cpython-38.pyc
7.142 KB
-rw-r--r--
versionpredicate.cpython-38.opt-1.pyc
5.017 KB
-rw-r--r--
versionpredicate.cpython-38.opt-2.pyc
2.595 KB
-rw-r--r--
versionpredicate.cpython-38.pyc
5.017 KB
-rw-r--r--