$56 GRAYBYTE WORDPRESS FILE MANAGER $43

SERVER : premium201.web-hosting.com #1 SMP Wed Mar 26 12:08:09 UTC 2025
SERVER IP : 104.21.43.35 | ADMIN IP 216.73.216.180
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : mail

/opt/alt/python39/lib64/python3.9/distutils/__pycache__/

HOME
Current File : /opt/alt/python39/lib64/python3.9/distutils/__pycache__//version.cpython-39.pyc
a

XC?h�0�@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	�6/opt/alt/python39/lib64/python3.9/distutils/version.py�__init__&szVersion.__init__cCsd|jjt|�fS)Nz	%s ('%s'))�	__class__�__name__�str�rr	r	r
�__repr__*szVersion.__repr__cCs|�|�}|tur|S|dkS�Nr��_cmp�NotImplemented�r�other�cr	r	r
�__eq__-s
zVersion.__eq__cCs|�|�}|tur|S|dkSrrrr	r	r
�__lt__3s
zVersion.__lt__cCs|�|�}|tur|S|dkSrrrr	r	r
�__le__9s
zVersion.__le__cCs|�|�}|tur|S|dkSrrrr	r	r
�__gt__?s
zVersion.__gt__cCs|�|�}|tur|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|�}nt|t�s"tS|j|jkrB|j|jkr>dSdS|jsR|jsRdS|jrb|jsbdS|jsr|jrrdS|jr�|jr�|j|jkr�dS|j|jkr�dSdSnds�Jd��dS)N���r!rFznever get here)�
isinstancerr rr-r.�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
r0szLooseVersion.__init__c	Cs\||_dd�|j�|�D�}t|�D],\}}zt|�||<Wq$tyNYq$0q$||_dS)NcSsg|]}|r|dkr|�qS)r1r	)�.0�xr	r	r
�
<listcomp>:s�z&LooseVersion.parse.<locals>.<listcomp>)r�component_re�split�	enumerater,r(r-)rrZ
components�i�objr	r	r
r5szLooseVersion.parsecCs|jSr)rrr	r	r
r3EszLooseVersion.__str__cCsdt|�S)NzLooseVersion ('%s'))rrr	r	r
rIszLooseVersion.__repr__cCsVt|t�rt|�}nt|t�s"tS|j|jkr2dS|j|jkrBdS|j|jkrRdSdS)Nrr4r!)r5rr;rr-r6r	r	r
rMs


zLooseVersion._cmp)N)
r
rrrr7r8r9r?rrr3rrr	r	r	r
r;
s
r;)rr7rr r;r	r	r	r
�<module>
s
>1


Current_dir [ NOT WRITEABLE ] Document_root [ NOT WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
22 Jul 2025 8.33 AM
root / linksafe
0755
__init__.cpython-39.opt-1.pyc
0.39 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
__init__.cpython-39.opt-2.pyc
0.212 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
__init__.cpython-39.pyc
0.39 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
_msvccompiler.cpython-39.opt-1.pyc
12.497 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
_msvccompiler.cpython-39.opt-2.pyc
11.375 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
_msvccompiler.cpython-39.pyc
12.539 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
archive_util.cpython-39.opt-1.pyc
6.445 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
archive_util.cpython-39.opt-2.pyc
4.451 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
archive_util.cpython-39.pyc
6.445 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
bcppcompiler.cpython-39.opt-1.pyc
6.358 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
bcppcompiler.cpython-39.opt-2.pyc
6.077 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
bcppcompiler.cpython-39.pyc
6.358 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
ccompiler.cpython-39.opt-1.pyc
32.334 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
ccompiler.cpython-39.opt-2.pyc
16.409 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
ccompiler.cpython-39.pyc
32.423 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
cmd.cpython-39.opt-1.pyc
13.612 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
cmd.cpython-39.opt-2.pyc
7.884 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
cmd.cpython-39.pyc
13.612 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
config.cpython-39.opt-1.pyc
3.459 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
config.cpython-39.opt-2.pyc
3.077 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
config.cpython-39.pyc
3.459 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
core.cpython-39.opt-1.pyc
6.511 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
core.cpython-39.opt-2.pyc
3.203 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
core.cpython-39.pyc
6.511 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
cygwinccompiler.cpython-39.opt-1.pyc
8.316 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
cygwinccompiler.cpython-39.opt-2.pyc
6.725 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
cygwinccompiler.cpython-39.pyc
8.316 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
debug.cpython-39.opt-1.pyc
0.204 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
debug.cpython-39.opt-2.pyc
0.204 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
debug.cpython-39.pyc
0.204 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
dep_util.cpython-39.opt-1.pyc
2.665 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
dep_util.cpython-39.opt-2.pyc
1.255 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
dep_util.cpython-39.pyc
2.665 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
dir_util.cpython-39.opt-1.pyc
5.693 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
dir_util.cpython-39.opt-2.pyc
3.371 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
dir_util.cpython-39.pyc
5.693 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
dist.cpython-39.opt-1.pyc
33.556 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
dist.cpython-39.opt-2.pyc
24.482 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
dist.cpython-39.pyc
33.556 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
errors.cpython-39.opt-1.pyc
5.142 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
errors.cpython-39.opt-2.pyc
2.653 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
errors.cpython-39.pyc
5.142 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
extension.cpython-39.opt-1.pyc
6.768 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
extension.cpython-39.opt-2.pyc
3.359 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
extension.cpython-39.pyc
6.768 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
fancy_getopt.cpython-39.opt-1.pyc
10.269 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
fancy_getopt.cpython-39.opt-2.pyc
7.531 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
fancy_getopt.cpython-39.pyc
10.389 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
file_util.cpython-39.opt-1.pyc
5.855 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
file_util.cpython-39.opt-2.pyc
3.769 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
file_util.cpython-39.pyc
5.855 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
filelist.cpython-39.opt-1.pyc
9.545 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
filelist.cpython-39.opt-2.pyc
6.741 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
filelist.cpython-39.pyc
9.617 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
log.cpython-39.opt-1.pyc
2.273 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
log.cpython-39.opt-2.pyc
2.214 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
log.cpython-39.pyc
2.273 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
msvc9compiler.cpython-39.opt-1.pyc
17.072 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
msvc9compiler.cpython-39.opt-2.pyc
15.489 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
msvc9compiler.cpython-39.pyc
17.114 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
msvccompiler.cpython-39.opt-1.pyc
14.375 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
msvccompiler.cpython-39.opt-2.pyc
12.839 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
msvccompiler.cpython-39.pyc
14.375 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
spawn.cpython-39.opt-1.pyc
3.373 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
spawn.cpython-39.opt-2.pyc
2.267 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
spawn.cpython-39.pyc
3.373 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
sysconfig.cpython-39.opt-1.pyc
11.791 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
sysconfig.cpython-39.opt-2.pyc
8.386 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
sysconfig.cpython-39.pyc
11.791 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
text_file.cpython-39.opt-1.pyc
8.256 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
text_file.cpython-39.opt-2.pyc
3.277 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
text_file.cpython-39.pyc
8.256 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
unixccompiler.cpython-39.opt-1.pyc
6.978 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
unixccompiler.cpython-39.opt-2.pyc
6.363 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
unixccompiler.cpython-39.pyc
6.978 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
util.cpython-39.opt-1.pyc
15.237 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
util.cpython-39.opt-2.pyc
9.491 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
util.cpython-39.pyc
15.237 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
version.cpython-39.opt-1.pyc
7.153 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
version.cpython-39.opt-2.pyc
3.945 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
version.cpython-39.pyc
7.182 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
versionpredicate.cpython-39.opt-1.pyc
5.018 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
versionpredicate.cpython-39.opt-2.pyc
2.596 KB
19 Jun 2025 12.11 PM
root / linksafe
0644
versionpredicate.cpython-39.pyc
5.018 KB
19 Jun 2025 12.11 PM
root / linksafe
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025 CONTACT ME
Static GIF