$23 GRAYBYTE WORDPRESS FILE MANAGER $97

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

/opt/alt/python34/lib64/python3.4/distutils/__pycache__/

HOME
Current File : /opt/alt/python34/lib64/python3.4/distutils/__pycache__//util.cpython-34.pyc
�
i f�P�	@s�dZddlZddlZddlZddlZddlZddlmZddl	m
Z
ddlmZddl
mZddlmZdd	�Zd
d�Zdd
�Zdadd�Zdd�Zddd�Zdaaadd�Zdd�Zddddd�Zdd�Zddddddddd�Zd d!�Zdddd"d#�Z ddddd$d%�Z!Gd&d'�d'�Z"dS)(zudistutils.util

Miscellaneous utility functions -- anything that doesn't fit into
one of the other *util.py modules.
�N)�DistutilsPlatformError)�newer)�spawn)�log)�DistutilsByteCompileErrorcCs�tjdkr�d}tjj|�}|d*kr:tjStjjd|�}tj|t|�|�j�}|dkr�dS|dkr�dStjSd	tjkr�tjd	Stjd
ks�t	td�r�tjStj
�\}}}}}|j�jdd
�}|jdd�}|jdd�}|dd�dkrTd||fS|dd�dkr�|ddkr�d}dt|d�d|dd�f}idd6dd6}	|d |	tj
7}q�n�|dd!�d"kr�d||fS|dd�d#kr"d$|||fS|dd%�d&krzd&}tjd'tj�}
|
j|�}|r�|j�}q�n[|dd%�d(kr�ddl}ddl}
|j|
jj�|||�\}}}nd)|||fS)+a�Return a string that identifies the current platform.  This is used
    mainly to distinguish platform-specific build directories and
    platform-specific built distributions.  Typically includes the OS name
    and version and the architecture (as supplied by 'os.uname()'),
    although the exact information included depends on the OS; eg. for IRIX
    the architecture isn't particularly important (IRIX only runs on SGI
    hardware), but for Linux the kernel version isn't particularly
    important.

    Examples of returned values:
       linux-i586
       linux-alpha (?)
       solaris-2.6-sun4u
       irix-5.3
       irix64-6.2

    Windows will return one of:
       win-amd64 (64bit Windows on AMD64 (aka x86_64, Intel64, EM64T, etc)
       win-ia64 (64bit Windows on Itanium)
       win32 (all others - specifically, sys.platform is returned)

    For other non-POSIX platforms, currently just returns 'sys.platform'.
    �ntz bit (��)�amd64z	win-amd64�itaniumzwin-ia64�_PYTHON_HOST_PLATFORM�posix�uname�/�� �_�-N��linuxz%s-%s�sunosr�5�solarisz%d.%s���32biti����64bitl����z.%s��irix�aixz%s-%s.%s��cygwinz[\d.]+�darwinz%s-%s-%s���)�os�name�sys�version�find�platform�len�lower�environ�hasattrr�replace�int�maxsize�re�compile�ASCII�match�group�_osx_supportZdistutils.sysconfig�get_platform_osx�	sysconfig�get_config_vars)�prefix�i�j�look�osname�host�releaser'�machine�bitness�rel_re�mr6�	distutils�rF�3/opt/alt/python34/lib64/python3.4/distutils/util.py�get_platformsX#(rHcCs�tjdkr|S|s|S|ddkr@td|��n|ddkrctd|��n|jd�}xd|kr�|jd�quW|s�tjStjj|�S)a�Return 'pathname' as a name that will work on the native filesystem,
    i.e. split it on '/' and put it back together again using the current
    directory separator.  Needed because filenames in the setup script are
    always supplied in Unix style, and have to be converted to the local
    convention before we can actually use them in the filesystem.  Raises
    ValueError on non-Unix-ish systems if 'pathname' either starts or
    ends with a slash.
    rrzpath '%s' cannot be absoluterzpath '%s' cannot end with '/'�.r#)r$�sep�
ValueError�split�remove�curdir�path�join)�pathname�pathsrFrFrG�convert_pathos	rScCs�tjdkrTtjj|�s4tjj||�Stjj||dd��Snptjdkr�tjj|�\}}|ddkr�|dd�}ntjj||�Stdtj��dS)a	Return 'pathname' with 'new_root' prepended.  If 'pathname' is
    relative, this is equivalent to "os.path.join(new_root,pathname)".
    Otherwise, it requires making 'pathname' relative and then joining the
    two, which is tricky on DOS/Windows and Mac OS.
    r
rNrr�\z!nothing known about platform '%s')r$r%rO�isabsrP�
splitdriver)Znew_rootrQZdriverOrFrFrG�change_root�s rWcCs�tr
dStjdkrWdtjkrWddl}|jtj��dtjd<ndtjkryt�tjd<ndadS)aLEnsure that 'os.environ' has all the environment variables we
    guarantee that users can use in config files, command-line options,
    etc.  Currently this includes:
      HOME - user's home directory (Unix only)
      PLAT - description of the current platform, including hardware
             and OS (see 'get_platform()')
    Nr
�HOMErrZPLATr)�_environ_checkedr$r%r,�pwd�getpwuid�getuidrH)rZrFrFrG�
check_environ�s	#r]cCsit�|dd�}ytjd||�SWn5tk
rd}ztd|��WYdd}~XnXdS)a�Perform shell/Perl-style variable substitution on 'string'.  Every
    occurrence of '$' followed by a name is considered a variable, and
    variable is substituted by the value found in the 'local_vars'
    dictionary, or in 'os.environ' if it's not in 'local_vars'.
    'os.environ' is first checked/augmented to guarantee that it contains
    certain values: see 'check_environ()'.  Raise ValueError for any
    variables not found in either 'local_vars' or 'os.environ'.
    cSs8|jd�}||kr)t||�Stj|SdS)Nr)r5�strr$r,)r4�
local_varsZvar_namerFrFrG�_subst�szsubst_vars.<locals>._substz\$([a-zA-Z_][a-zA-Z_0-9]*)zinvalid variable '$%s'N)r]r1�sub�KeyErrorrK)�sr_r`�varrFrFrG�
subst_vars�s	rezerror: cCs|t|�S)N)r^)�excr:rFrFrG�grok_environment_error�srgcCs8tjdtj�atjd�atjd�adS)Nz
[^\\\'\"%s ]*z'(?:[^'\\]|\\.)*'z"(?:[^"\\]|\\.)*")r1r2�string�
whitespace�
_wordchars_re�
_squote_re�
_dquote_rerFrFrFrG�_init_regex�srmcCstdkrt�n|j�}g}d}x�|rtj||�}|j�}|t|�kr�|j|d|��Pn||tjkr�|j|d|��||d�j	�}d}n||dkr
|d|�||dd�}|d}n�||dkr/t
j||�}n9||dkrTtj||�}ntd||��|dkr�t
d||��n|j�\}}|d|�||d|d�||d�}|j�d	}|t|�kr1|j|�Pq1q1W|S)
aSplit a string up according to Unix shell-like rules for quotes and
    backslashes.  In short: words are delimited by spaces, as long as those
    spaces are not escaped by a backslash, or inside a quoted string.
    Single and double quotes are equivalent, and the quote characters can
    be backslash-escaped.  The backslash is stripped from any two-character
    escape sequence, leaving only the escaped character.  The quote
    characters are stripped from any quoted string.  Returns a list of
    words.
    NrrTr�'�"z!this can't happen (bad char '%c')z"bad string (mismatched %s quotes?)r)rjrm�stripr4�endr*�appendrhri�lstriprkrl�RuntimeErrorrK�span)rcZwords�posrDrqZbegrFrFrG�split_quoted�s@
		"
4
rwcCss|dkrOd|j|f}|dd�dkrO|dd�d}qOntj|�|so||�ndS)	a�Perform some action that affects the outside world (eg.  by
    writing to the filesystem).  Such actions are special because they
    are disabled by the 'dry_run' flag.  This method takes care of all
    that bureaucracy for you; all you have to do is supply the
    function to call and an argument tuple for it (to embody the
    "external action" being performed), and an optional message to
    print.
    Nz%s%rrz,)rr	���rx)�__name__r�info)�func�args�msg�verbose�dry_runrFrFrG�executes	
r�cCsC|j�}|dkrdS|dkr,dStd|f��dS)z�Convert a string representation of truth to true (1) or false (0).

    True values are 'y', 'yes', 't', 'true', 'on', and '1'; false values
    are 'n', 'no', 'f', 'false', 'off', and '0'.  Raises ValueError if
    'val' is anything else.
    �y�yes�t�true�on�1r�n�no�f�false�off�0rzinvalid truth value %rN)r�zyesr�ztruer�r�)r�znor�r�r�r�)r+rK)�valrFrFrG�	strtobool0sr�rcCs%tjrtd��n|dkr9to3|dk}n|s�y&ddlm}|d�\}	}
Wn5tk
r�ddlm}d|d�}	}
YnXtj	d|
�|s@|	dk	r�t
j|	d�}nt|
d�}|j
d	�|j
d
jtt|��d�|j
d|||||f�|j�ntj|
g}
|d
krn|
jd
d�n|dkr�|
jd
d�nt|
d|�tt
j|
fd|
d|�naddlm}xN|D]F}|dd�dkr�q�n|dkr!tjj|d|�}ntjj|�}|}|r�|dt|��|krttd||f��n|t|�d�}n|r�t
jj||�}nt
jj|�}|r�|s�t ||�rtj	d||�|s||||�qqtj!d||�q�q�WdS)a�Byte-compile a collection of Python source files to either .pyc
    or .pyo files in a __pycache__ subdirectory.  'py_files' is a list
    of files to compile; any files that don't end in ".py" are silently
    skipped.  'optimize' must be one of the following:
      0 - don't optimize (generate .pyc)
      1 - normal optimization (like "python -O")
      2 - extra optimization (like "python -OO")
    If 'force' is true, all files are recompiled regardless of
    timestamps.

    The source filename encoded in each bytecode file defaults to the
    filenames listed in 'py_files'; you can modify these with 'prefix' and
    'basedir'.  'prefix' is a string that will be stripped off of each
    source filename, and 'base_dir' is a directory name that will be
    prepended (after 'prefix' is stripped).  You can supply either or both
    (or neither) of 'prefix' and 'base_dir', as you wish.

    If 'dry_run' is true, doesn't actually do anything that would
    affect the filesystem.

    Byte-compilation is either done directly in this interpreter process
    with the standard py_compile module, or indirectly by writing a
    temporary script and executing it.  Normally, you should let
    'byte_compile()' figure out to use direct compilation or not (see
    the source for details).  The 'direct' flag is used by the script
    generated in indirect mode; unless you know what you're doing, leave
    it set to None.
    zbyte-compiling is disabled.Nr)�mkstempz.py)�mktempz$writing byte-compilation script '%s'�wz2from distutils.util import byte_compile
files = [
z,
z]
z�
byte_compile(files, optimize=%r, force=%r,
             prefix=%r, base_dir=%r,
             verbose=%r, dry_run=0,
             direct=1)
rz-Orz-OOrzremoving %s)r2r�debug_overridez1invalid prefix: filename %r doesn't start with %rzbyte-compiling %s to %sz%skipping byte-compilation of %s to %s���)"r&�dont_write_bytecoder�	__debug__Ztempfiler��ImportErrorr�rrzr$�fdopen�open�writerP�map�repr�close�
executable�insertrr�rM�
py_compiler2�	importlib�util�cache_from_sourcer*rKrO�basenamer�debug)Zpy_files�optimizeZforcer:Zbase_dirr~rZdirectr�Z	script_fdZscript_namer�Zscript�cmdr2�file�cfile�dfileZ
cfile_baserFrFrG�byte_compile@sl"	
#


		r�cCs"|jd�}d}|j|�S)z�Return a version of the string escaped for inclusion in an
    RFC-822 header, by ensuring there are 8 spaces space after each newline.
    �
�rz        z	
        )rLrP)�header�linesrJrFrFrG�
rfc822_escape�sr�cCsz|s
dSddlm}m}Gdd�d|�}|dkrQ|d�}n||d|�}|j|dd	�dS)
aInvoke 2to3 on a list of Python files.
    The files should all come from the build area, as the
    modification is done in-place. To reduce the build time,
    only files modified since the last invocation of this
    function should be passed in the files argument.Nr)�RefactoringTool�get_fixers_from_packagec@s4eZdZdd�Zdd�Zdd�ZdS)z*run_2to3.<locals>.DistutilsRefactoringToolc_stj||�dS)N)r�error)�selfr}r|�kwrFrFrG�	log_error�sz4run_2to3.<locals>.DistutilsRefactoringTool.log_errorcWstj||�dS)N)rrz)r�r}r|rFrFrG�log_message�sz6run_2to3.<locals>.DistutilsRefactoringTool.log_messagecWstj||�dS)N)rr�)r�r}r|rFrFrG�	log_debug�sz4run_2to3.<locals>.DistutilsRefactoringTool.log_debugN)ry�
__module__�__qualname__r�r�r�rFrFrFrG�DistutilsRefactoringTool�sr�z
lib2to3.fixes�optionsr�T)Zlib2to3.refactorr�r�Zrefactor)�files�fixer_namesr��explicitr�r�r��rrFrFrG�run_2to3�s
r�cCs|ddlm}ddlm}ddlm}|�}	tj�}
tj|�z|	j	�Wdtj|
�X|	j
|	jdd�<|r�x<|j�D]+}|j
�}|s�q�n|	j|�q�Wng}xz|	jD]o}
tjj||
�}|tjj|��|tjj||
�|dd�}|dr�|j|�q�q�Wtdd	�|D�d
|d|d|�|S)
z�Recursively copy a directory, only copying new and changed files,
    running run_2to3 over all newly copied Python modules afterward.

    If you give a template string, it's parsed like a MANIFEST.in.
    r)�mkpath)�	copy_file)�FileListN�updatercSs+g|]!}|j�jd�r|�qS)z.py)r+�endswith)�.0�fnrFrFrG�
<listcomp>s	z$copydir_run_2to3.<locals>.<listcomp>r�r�r�)Zdistutils.dir_utilr�Zdistutils.file_utilr�Zdistutils.filelistr�r$�getcwd�chdir�findallZallfilesr��
splitlinesrpZprocess_template_linerOrP�dirnamerrr�)�src�dest�templater�r�r�r�r�r�ZfilelistrN�lineZcopied�filenameZoutname�resrFrFrG�copydir_run_2to3�s4	
$
r�c@s4eZdZdZdZdZdZdd�ZdS)�	Mixin2to3z�Mixin class for commands that run 2to3.
    To configure 2to3, setup scripts may either change
    the class variables, or inherit from individual commands
    to override how 2to3 is invoked.NcCst||j|j|j�S)N)r�r�r�r�)r�r�rFrFrGr�(szMixin2to3.run_2to3)ryr�r��__doc__r�r�r�r�rFrFrFrGr�s
r�)#r�r$r1�importlib.utilr�r&rhZdistutils.errorsrZdistutils.dep_utilrZdistutils.spawnrrErrrHrSrWrYr]rergrjrkrlrmrwr�r�r�r�r�r�r�rFrFrFrG�<module>s>]=�
 


Current_dir [ NOT WRITEABLE ] Document_root [ NOT WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
24 May 2024 8.33 AM
root / linksafe
0755
__init__.cpython-34.pyc
0.396 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
__init__.cpython-34.pyo
0.396 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
archive_util.cpython-34.pyc
6.58 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
archive_util.cpython-34.pyo
6.58 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
bcppcompiler.cpython-34.pyc
7.121 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
bcppcompiler.cpython-34.pyo
7.121 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
ccompiler.cpython-34.pyc
34.06 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
ccompiler.cpython-34.pyo
33.898 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
cmd.cpython-34.pyc
15.31 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
cmd.cpython-34.pyo
15.31 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
config.cpython-34.pyc
3.731 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
config.cpython-34.pyo
3.731 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
core.cpython-34.pyc
6.964 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
core.cpython-34.pyo
6.964 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
cygwinccompiler.cpython-34.pyc
9.021 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
cygwinccompiler.cpython-34.pyo
9.021 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
debug.cpython-34.pyc
0.206 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
debug.cpython-34.pyo
0.206 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
dep_util.cpython-34.pyc
2.798 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
dep_util.cpython-34.pyo
2.798 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
dir_util.cpython-34.pyc
6.088 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
dir_util.cpython-34.pyo
6.088 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
dist.cpython-34.pyc
35.987 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
dist.cpython-34.pyo
35.987 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
errors.cpython-34.pyc
5.583 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
errors.cpython-34.pyo
5.583 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
extension.cpython-34.pyc
7.047 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
extension.cpython-34.pyo
7.047 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
fancy_getopt.cpython-34.pyc
11.298 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
fancy_getopt.cpython-34.pyo
11.131 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
file_util.cpython-34.pyc
6.201 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
file_util.cpython-34.pyo
6.201 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
filelist.cpython-34.pyc
9.933 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
filelist.cpython-34.pyo
9.933 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
log.cpython-34.pyc
2.435 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
log.cpython-34.pyo
2.435 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
msvc9compiler.cpython-34.pyc
18.796 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
msvc9compiler.cpython-34.pyo
18.73 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
msvccompiler.cpython-34.pyc
15.609 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
msvccompiler.cpython-34.pyo
15.609 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
spawn.cpython-34.pyc
5.359 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
spawn.cpython-34.pyo
5.359 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
sysconfig.cpython-34.pyc
13.21 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
sysconfig.cpython-34.pyo
13.21 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
text_file.cpython-34.pyc
8.726 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
text_file.cpython-34.pyo
8.726 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
unixccompiler.cpython-34.pyc
7.233 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
unixccompiler.cpython-34.pyo
7.233 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
util.cpython-34.pyc
16.223 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
util.cpython-34.pyo
16.223 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
version.cpython-34.pyc
7.786 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
version.cpython-34.pyo
7.736 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
versionpredicate.cpython-34.pyc
5.272 KB
17 Apr 2024 5.10 PM
root / linksafe
0644
versionpredicate.cpython-34.pyo
5.272 KB
17 Apr 2024 5.10 PM
root / linksafe
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025 CONTACT ME
Static GIF