golden hour
/opt/alt/python27/lib64/python2.7/distutils
⬆️ Go Up
Upload
File/Folder
Size
Actions
README
295 B
Del
OK
__init__.py
236 B
Del
OK
__init__.pyc
428 B
Del
OK
__init__.pyo
428 B
Del
OK
archive_util.py
8.03 KB
Del
OK
archive_util.pyc
7.52 KB
Del
OK
archive_util.pyo
7.52 KB
Del
OK
bcppcompiler.py
14.59 KB
Del
OK
bcppcompiler.pyc
7.81 KB
Del
OK
bcppcompiler.pyo
7.81 KB
Del
OK
ccompiler.py
45.63 KB
Del
OK
ccompiler.pyc
36.72 KB
Del
OK
ccompiler.pyo
36.58 KB
Del
OK
cmd.py
18.82 KB
Del
OK
cmd.pyc
16.88 KB
Del
OK
cmd.pyo
16.88 KB
Del
OK
command
-
Del
OK
config.py
4.04 KB
Del
OK
config.pyc
3.57 KB
Del
OK
config.pyo
3.57 KB
Del
OK
core.py
8.81 KB
Del
OK
core.pyc
7.41 KB
Del
OK
core.pyo
7.41 KB
Del
OK
cygwinccompiler.py
17.32 KB
Del
OK
cygwinccompiler.pyc
9.75 KB
Del
OK
cygwinccompiler.pyo
9.75 KB
Del
OK
debug.py
162 B
Del
OK
debug.pyc
267 B
Del
OK
debug.pyo
267 B
Del
OK
dep_util.py
3.43 KB
Del
OK
dep_util.pyc
3.16 KB
Del
OK
dep_util.pyo
3.16 KB
Del
OK
dir_util.py
7.68 KB
Del
OK
dir_util.pyc
6.72 KB
Del
OK
dir_util.pyo
6.72 KB
Del
OK
dist.py
48.88 KB
Del
OK
dist.pyc
39.11 KB
Del
OK
dist.pyo
39.11 KB
Del
OK
emxccompiler.py
11.65 KB
Del
OK
emxccompiler.pyc
7.41 KB
Del
OK
emxccompiler.pyo
7.41 KB
Del
OK
errors.py
3.41 KB
Del
OK
errors.pyc
6.39 KB
Del
OK
errors.pyo
6.39 KB
Del
OK
extension.py
10.65 KB
Del
OK
extension.pyc
7.29 KB
Del
OK
extension.pyo
7.07 KB
Del
OK
fancy_getopt.py
17.53 KB
Del
OK
fancy_getopt.pyc
11.94 KB
Del
OK
fancy_getopt.pyo
11.77 KB
Del
OK
file_util.py
7.94 KB
Del
OK
file_util.pyc
6.66 KB
Del
OK
file_util.pyo
6.66 KB
Del
OK
filelist.py
12.39 KB
Del
OK
filelist.pyc
10.72 KB
Del
OK
filelist.pyo
10.72 KB
Del
OK
log.py
1.65 KB
Del
OK
log.pyc
2.87 KB
Del
OK
log.pyo
2.87 KB
Del
OK
msvc9compiler.py
30.28 KB
Del
OK
msvc9compiler.pyc
21.39 KB
Del
OK
msvc9compiler.pyo
21.32 KB
Del
OK
msvccompiler.py
23.08 KB
Del
OK
msvccompiler.pyc
17.44 KB
Del
OK
msvccompiler.pyo
17.44 KB
Del
OK
spawn.py
8.45 KB
Del
OK
spawn.pyc
6.37 KB
Del
OK
spawn.pyo
6.37 KB
Del
OK
sysconfig.py
17.29 KB
Del
OK
sysconfig.py.debug-build
17.21 KB
Del
OK
sysconfig.pyc
13.29 KB
Del
OK
sysconfig.pyo
13.29 KB
Del
OK
text_file.py
12.14 KB
Del
OK
text_file.pyc
9.18 KB
Del
OK
text_file.pyo
9.18 KB
Del
OK
unixccompiler.py
13.89 KB
Del
OK
unixccompiler.py.distutils-rpath
13.36 KB
Del
OK
unixccompiler.pyc
8.19 KB
Del
OK
unixccompiler.pyo
8.19 KB
Del
OK
util.py
17.81 KB
Del
OK
util.pyc
14.23 KB
Del
OK
util.pyo
14.23 KB
Del
OK
version.py
11.17 KB
Del
OK
version.pyc
7.23 KB
Del
OK
version.pyo
7.23 KB
Del
OK
versionpredicate.py
4.98 KB
Del
OK
versionpredicate.pyc
5.5 KB
Del
OK
versionpredicate.pyo
5.5 KB
Del
OK
Edit: version.pyc
� T~gc @ sq d Z d d l Z d d l Z d d l m Z d d d � � YZ d e f d � � YZ d e f d � � YZ d S( s� 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) i����N( t StringTypet Versionc B s# e Z d Z d d � Z d � Z RS( s� 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. c C s | r | j | � n d S( N( t parse( t selft vstring( ( s6 /opt/alt/python27/lib64/python2.7/distutils/version.pyt __init__&