AlkantarClanX12

Your IP : 3.12.152.102


Current Path : /opt/alt/python37/lib64/python3.7/importlib/__pycache__/
Upload File :
Current File : //opt/alt/python37/lib64/python3.7/importlib/__pycache__/_bootstrap_external.cpython-37.pyc

B

� f���@sdZdZdZeeZdd�Zdd�Zdd�Zd	d
�Zdd�Zd
d�Z	dd�Z
dd�Zdd�Zdadd�Z
ee
j�Zd�dd�dZe�ed�ZdZdZdgZdgZeZZdbd d!�d"d#�Zd$d%�Zd&d'�Zd(d)�Zd*d+�Z d,d-�Z!d.d/�Z"d0d1�Z#d2d3�Z$d4d5�Z%dcd6d7�Z&ddd9d:�Z'ded<d=�Z(d>d?�Z)e*�Z+dfd e+d@�dAdB�Z,GdCdD�dD�Z-GdEdF�dF�Z.GdGdH�dHe.�Z/GdIdJ�dJ�Z0GdKdL�dLe0e/�Z1GdMdN�dNe0e.�Z2gZ3GdOdP�dPe0e.�Z4GdQdR�dR�Z5GdSdT�dT�Z6GdUdV�dV�Z7GdWdX�dX�Z8dgdYdZ�Z9d[d\�Z:d]d^�Z;d_d`�Z<d S)ha^Core implementation of path-based import.

This module is NOT meant to be directly imported! It has been designed such
that it can be bootstrapped into Python as the implementation of import. As
such it requires the injection of specific modules and attributes in order to
work. One should use importlib as the public-facing version of this module.

)�win)�cygwin�darwincs<tj�t�r0tj�t�rd�nd��fdd�}ndd�}|S)N�PYTHONCASEOKsPYTHONCASEOKcs
�tjkS)z5True if filenames must be checked case-insensitively.)�_os�environ�)�keyr�B/opt/alt/python37/lib64/python3.7/importlib/_bootstrap_external.py�_relax_case$sz%_make_relax_case.<locals>._relax_casecSsdS)z5True if filenames must be checked case-insensitively.Frrrrr	r
(s)�sys�platform�
startswith�_CASE_INSENSITIVE_PLATFORMS�#_CASE_INSENSITIVE_PLATFORMS_STR_KEY)r
r)rr	�_make_relax_casesrcCst|�d@�dd�S)z*Convert a 32-bit integer to little-endian.l����little)�int�to_bytes)�xrrr	�_w_long.srcCst�|d�S)z/Convert 4 bytes in little-endian to an integer.r)r�
from_bytes)�	int_bytesrrr	�_r_long3srcGst�dd�|D��S)zReplacement for os.path.join().cSsg|]}|r|�t��qSr)�rstrip�path_separators)�.0�partrrr	�
<listcomp>:sz_path_join.<locals>.<listcomp>)�path_sep�join)�
path_partsrrr	�
_path_join8s
r"cCs`tt�dkr$|�t�\}}}||fSx2t|�D]&}|tkr.|j|dd�\}}||fSq.Wd|fS)z Replacement for os.path.split().�)�maxsplit�)�lenr�
rpartitionr�reversed�rsplit)�path�front�_�tailrrrr	�_path_split>sr.cCs
t�|�S)z~Stat the path.

    Made a separate function to make it easier to override in experiments
    (e.g. cache stat results).

    )r�stat)r*rrr	�
_path_statJsr0cCs0yt|�}Wntk
r dSX|jd@|kS)z1Test whether the path is the specified mode type.Fi�)r0�OSError�st_mode)r*�mode�	stat_inforrr	�_path_is_mode_typeTs
r5cCs
t|d�S)zReplacement for os.path.isfile.i�)r5)r*rrr	�_path_isfile]sr6cCs|st��}t|d�S)zReplacement for os.path.isdir.i@)r�getcwdr5)r*rrr	�_path_isdirbsr8�cCs�d�|t|��}t�|tjtjBtjB|d@�}y2t�|d��}|�	|�WdQRXt�
||�Wn:tk
r�yt�|�Wntk
r�YnX�YnXdS)z�Best-effort function to write data to a path atomically.
    Be prepared to handle a FileExistsError if concurrent writing of the
    temporary file is attempted.z{}.{}i��wbN)
�format�idr�open�O_EXCL�O_CREAT�O_WRONLY�_io�FileIO�write�replacer1�unlink)r*�datar3�path_tmp�fd�filerrr	�
_write_atomicisrJiB
�rs
�__pycache__zopt-z.pyz.pycN)�optimizationcCs�|dk	r4t�dt�|dk	r(d}t|��|r0dnd}t�|�}t|�\}}|�d�\}}}tj	j
}	|	dkrrtd��d�|r~|n|||	g�}
|dkr�tj
jdkr�d}ntj
j}t|�}|dkr�|��s�td	�|���d
�|
t|�}
t|t|
td�S)a�Given the path to a .py file, return the path to its .pyc file.

    The .py file does not need to exist; this simply returns the path to the
    .pyc file calculated as if the .py file were imported.

    The 'optimization' parameter controls the presumed optimization level of
    the bytecode file. If 'optimization' is not None, the string representation
    of the argument is taken and verified to be alphanumeric (else ValueError
    is raised).

    The debug_override parameter is deprecated. If debug_override is not None,
    a True value is the same as setting 'optimization' to the empty string
    while a False value is equivalent to setting 'optimization' to '1'.

    If sys.implementation.cache_tag is None then NotImplementedError is raised.

    NzFthe debug_override parameter is deprecated; use 'optimization' insteadz2debug_override or optimization must be set to Noner%r#�.z$sys.implementation.cache_tag is None�z{!r} is not alphanumericz{}.{}{})�	_warnings�warn�DeprecationWarning�	TypeErrorr�fspathr.r'r�implementation�	cache_tag�NotImplementedErrorr �flags�optimize�str�isalnum�
ValueErrorr;�_OPTr"�_PYCACHE�BYTECODE_SUFFIXES)r*�debug_overriderM�message�headr-�base�sep�rest�tag�almost_filenamerrr	�cache_from_sources0
rhcCs�tjjdkrtd��t�|�}t|�\}}t|�\}}|tkrNtd�	t|���|�
d�}|dkrptd�	|���nV|dkr�|�dd�d	}|�t
�s�td
�	t
���|tt
�d�}|��s�td�	|���|�d�d}t||td�S)
anGiven the path to a .pyc. file, return the path to its .py file.

    The .pyc file does not need to exist; this simply returns the path to
    the .py file calculated to correspond to the .pyc file.  If path does
    not conform to PEP 3147/488 format, ValueError will be raised. If
    sys.implementation.cache_tag is None then NotImplementedError is raised.

    Nz$sys.implementation.cache_tag is Nonez%{} not bottom-level directory in {!r}rN>rK�z!expected only 2 or 3 dots in {!r}rirK���z9optimization portion of filename does not start with {!r}z4optimization level {!r} is not an alphanumeric valuerO)rrUrVrWrrTr.r^r\r;�countr)r
r]r&r[�	partitionr"�SOURCE_SUFFIXES)r*rb�pycache_filename�pycache�	dot_countrM�	opt_level�
base_filenamerrr	�source_from_cache<s.	




rsc	Cs~t|�dkrdS|�d�\}}}|r8|��dd�dkr<|Syt|�}Wn$ttfk
rl|dd�}YnXt|�rz|S|S)z�Convert a bytecode file path to a source path (if possible).

    This function exists purely for backwards-compatibility for
    PyImport_ExecCodeModuleWithFilenames() in the C API.

    rONrN�������py)r&r'�lowerrsrWr\r6)�
bytecode_pathrer,�	extension�source_pathrrr	�_get_sourcefile^sr{cCsH|�tt��r.yt|�Stk
r*YqDXn|�tt��r@|SdSdS)N)�endswith�tuplermrhrWr_)�filenamerrr	�_get_cachedqsrcCs4yt|�j}Wntk
r&d}YnX|dO}|S)z3Calculate the mode permissions for a bytecode file.i��)r0r2r1)r*r3rrr	�
_calc_mode}s
r�csDd�fdd�	}y
tj}Wntk
r4dd�}YnX||��|S)z�Decorator to verify that the module being requested matches the one the
    loader can handle.

    The first argument (self) must define _name which the second argument is
    compared against. If the comparison fails then ImportError is raised.

    NcsB|dkr|j}n |j|kr0td|j|f|d���||f|�|�S)Nzloader for %s cannot handle %s)�name)r��ImportError)�selfr��args�kwargs)�methodrr	�_check_name_wrapper�s
z(_check_name.<locals>._check_name_wrappercSs<x(dD] }t||�rt||t||��qW|j�|j�dS)N)�
__module__�__name__�__qualname__�__doc__)�hasattr�setattr�getattr�__dict__�update)�new�oldrDrrr	�_wrap�s

z_check_name.<locals>._wrap)N)�
_bootstrapr��	NameError)r�r�r�r)r�r	�_check_name�s

r�cCs<|�|�\}}|dkr8t|�r8d}t�|�|d�t�|S)z�Try to find a loader for the specified module by delegating to
    self.find_loader().

    This method is deprecated in favor of finder.find_spec().

    Nz,Not importing directory {}: missing __init__rO)�find_loaderr&rPrQr;�
ImportWarning)r��fullname�loader�portions�msgrrr	�_find_module_shim�s

r�cCs�|dd�}|tkr<d|�d|��}t�d|�t|f|��t|�dkrfd|��}t�d|�t|��t|dd��}|d	@r�d
|�d|��}t|f|��|S)aTPerform basic validity checking of a pyc header and return the flags field,
    which determines how the pyc should be further validated against the source.

    *data* is the contents of the pyc file. (Only the first 16 bytes are
    required, though.)

    *name* is the name of the module being imported. It is used for logging.

    *exc_details* is a dictionary passed to ImportError if it raised for
    improved debugging.

    ImportError is raised when the magic number is incorrect or when the flags
    field is invalid. EOFError is raised when the data is found to be truncated.

    Nrzbad magic number in z: z{}�z(reached EOF while reading pyc header of ����zinvalid flags z in )�MAGIC_NUMBERr��_verbose_messager�r&�EOFErrorr)rFr��exc_details�magicrarXrrr	�
_classify_pyc�s
r�cCspt|dd��|d@kr:d|��}t�d|�t|f|��|dk	rlt|dd��|d@krltd|��f|��dS)aValidate a pyc against the source last-modified time.

    *data* is the contents of the pyc file. (Only the first 16 bytes are
    required.)

    *source_mtime* is the last modified timestamp of the source file.

    *source_size* is None or the size of the source file in bytes.

    *name* is the name of the module being imported. It is used for logging.

    *exc_details* is a dictionary passed to ImportError if it raised for
    improved debugging.

    An ImportError is raised if the bytecode is stale.

    r��l��zbytecode is stale for z{}Nr�)rr�r�r�)rF�source_mtime�source_sizer�r�rarrr	�_validate_timestamp_pyc�s
r�cCs&|dd�|kr"td|��f|��dS)a�Validate a hash-based pyc by checking the real source hash against the one in
    the pyc header.

    *data* is the contents of the pyc file. (Only the first 16 bytes are
    required.)

    *source_hash* is the importlib.util.source_hash() of the source file.

    *name* is the name of the module being imported. It is used for logging.

    *exc_details* is a dictionary passed to ImportError if it raised for
    improved debugging.

    An ImportError is raised if the bytecode is stale.

    r�r�z.hash in bytecode doesn't match hash of source N)r�)rF�source_hashr�r�rrr	�_validate_hash_pyc�s
r�cCsPt�|�}t|t�r8t�d|�|dk	r4t�||�|Std�	|�||d��dS)z#Compile bytecode as found in a pyc.zcode object from {!r}NzNon-code object in {!r})r�r*)
�marshal�loads�
isinstance�
_code_typer�r��_imp�_fix_co_filenamer�r;)rFr�rxrz�coderrr	�_compile_bytecodes


r�rOcCsFtt�}|�td��|�t|��|�t|��|�t�|��|S)z+Produce the data for a timestamp-based pyc.rO)�	bytearrayr��extendrr��dumps)r��mtimer�rFrrr	�_code_to_timestamp_pycsr�TcCsPtt�}d|d>B}|�t|��t|�dks2t�|�|�|�t�|��|S)z&Produce the data for a hash-based pyc.r#r�)r�r�r�rr&�AssertionErrorr�r�)r�r��checkedrFrXrrr	�_code_to_hash_pyc"s
r�cCs>ddl}t�|�j}|�|�}t�dd�}|�|�|d��S)zyDecode bytes representing source code and return the string.

    Universal newline support is used in the decoding.
    rONT)�tokenizerA�BytesIO�readline�detect_encoding�IncrementalNewlineDecoder�decode)�source_bytesr��source_bytes_readline�encoding�newline_decoderrrr	�
decode_source-s

r�)r��submodule_search_locationsc	Cs|dkr<d}t|d�rFy|�|�}WqFtk
r8YqFXn
t�|�}tj|||d�}d|_|dkr�x6t�D](\}}|�	t
|��rl|||�}||_PqlWdS|tkr�t|d�r�y|�
|�}Wntk
r�Yq�X|r�g|_n||_|jgk�r|�rt|�d}|j�|�|S)a=Return a module spec based on a file location.

    To indicate that the module is a package, set
    submodule_search_locations to a list of directory paths.  An
    empty list is sufficient, though its not otherwise useful to the
    import system.

    The loader must take a spec as its only __init__() arg.

    Nz	<unknown>�get_filename)�originT�
is_packagerO)r�r�r�rrTr��
ModuleSpec�
_set_fileattr�_get_supported_file_loadersr|r}r��	_POPULATEr�r�r.�append)	r��locationr�r��spec�loader_class�suffixesr��dirnamerrr	�spec_from_file_location>s>



r�c@sPeZdZdZdZdZdZedd��Zedd��Z	edd
d��Z
eddd
��Zd	S)�WindowsRegistryFinderz>Meta path finder for modules declared in the Windows registry.z;Software\Python\PythonCore\{sys_version}\Modules\{fullname}zASoftware\Python\PythonCore\{sys_version}\Modules\{fullname}\DebugFcCs2yt�tj|�Stk
r,t�tj|�SXdS)N)�_winreg�OpenKey�HKEY_CURRENT_USERr1�HKEY_LOCAL_MACHINE)�clsrrrr	�_open_registry�sz$WindowsRegistryFinder._open_registryc	Csp|jr|j}n|j}|j|dtjdd�d�}y&|�|��}t�|d�}WdQRXWnt	k
rjdSX|S)Nz%d.%drK)r��sys_versionr%)
�DEBUG_BUILD�REGISTRY_KEY_DEBUG�REGISTRY_KEYr;r�version_infor�r��
QueryValuer1)r�r��registry_keyr�hkey�filepathrrr	�_search_registry�sz&WindowsRegistryFinder._search_registryNcCsx|�|�}|dkrdSyt|�Wntk
r6dSXx:t�D]0\}}|�t|��r@tj||||�|d�}|Sq@WdS)N)r�)r�r0r1r�r|r}r��spec_from_loader)r�r�r*�targetr�r�r�r�rrr	�	find_spec�s
zWindowsRegistryFinder.find_speccCs"|�||�}|dk	r|jSdSdS)zlFind module named in the registry.

        This method is deprecated.  Use exec_module() instead.

        N)r�r�)r�r�r*r�rrr	�find_module�sz!WindowsRegistryFinder.find_module)NN)N)r�r�r�r�r�r�r��classmethodr�r�r�r�rrrr	r��sr�c@s0eZdZdZdd�Zdd�Zdd�Zdd	�Zd
S)�
_LoaderBasicszSBase class of common code needed by both SourceLoader and
    SourcelessFileLoader.cCs@t|�|��d}|�dd�d}|�d�d}|dko>|dkS)z�Concrete implementation of InspectLoader.is_package by checking if
        the path returned by get_filename has a filename of '__init__.py'.r#rNrOrK�__init__)r.r�r)r')r�r�r~�
filename_base�	tail_namerrr	r��sz_LoaderBasics.is_packagecCsdS)z*Use default semantics for module creation.Nr)r�r�rrr	�
create_module�sz_LoaderBasics.create_modulecCs8|�|j�}|dkr$td�|j���t�t||j�dS)zExecute the module.Nz4cannot load module {!r} when get_code() returns None)�get_coder�r�r;r��_call_with_frames_removed�execr�)r��moduler�rrr	�exec_module�s

z_LoaderBasics.exec_modulecCst�||�S)zThis module is deprecated.)r��_load_module_shim)r�r�rrr	�load_module�sz_LoaderBasics.load_moduleN)r�r�r�r�r�r�r�r�rrrr	r��s
r�c@sJeZdZdd�Zdd�Zdd�Zdd�Zd	d
�Zdd�d
d�Zdd�Z	dS)�SourceLoadercCst�dS)z�Optional method that returns the modification time (an int) for the
        specified path, where path is a str.

        Raises OSError when the path cannot be handled.
        N)r1)r�r*rrr	�
path_mtime�szSourceLoader.path_mtimecCsd|�|�iS)a�Optional method returning a metadata dict for the specified path
        to by the path (str).
        Possible keys:
        - 'mtime' (mandatory) is the numeric timestamp of last source
          code modification;
        - 'size' (optional) is the size in bytes of the source code.

        Implementing this method allows the loader to read bytecode files.
        Raises OSError when the path cannot be handled.
        r�)r�)r�r*rrr	�
path_stats�szSourceLoader.path_statscCs|�||�S)z�Optional method which writes data (bytes) to a file path (a str).

        Implementing this method allows for the writing of bytecode files.

        The source path is needed in order to correctly transfer permissions
        )�set_data)r�rz�
cache_pathrFrrr	�_cache_bytecode�szSourceLoader._cache_bytecodecCsdS)z�Optional method which writes data (bytes) to a file path (a str).

        Implementing this method allows for the writing of bytecode files.
        Nr)r�r*rFrrr	r�szSourceLoader.set_datac
CsR|�|�}y|�|�}Wn0tk
rH}ztd|d�|�Wdd}~XYnXt|�S)z4Concrete implementation of InspectLoader.get_source.z'source not available through get_data())r�N)r��get_datar1r�r�)r�r�r*r��excrrr	�
get_sources
zSourceLoader.get_sourceru)�	_optimizecCstjt||dd|d�S)z�Return the code object compiled from source.

        The 'data' argument can be any object type that compile() supports.
        r�T)�dont_inheritrY)r�r��compile)r�rFr*rrrr	�source_to_codeszSourceLoader.source_to_codec	Cs.|�|�}d}d}d}d}d}yt|�}Wntk
rDd}Y�n0Xy|�|�}	Wntk
rjY�n
Xt|	d�}y|�|�}
Wntk
r�Yn�X||d�}y�t|
||�}t|
�dd�}
|d@dk}|�r$|d	@dk}t	j
d
k�r8|s�t	j
dk�r8|�|�}t	�t|�}t
|
|||�nt|
||	d||�Wnttfk
�rTYn Xt�d
||�t|
|||d�S|dk�r�|�|�}|�||�}t�d|�tj�s*|dk	�r*|dk	�r*|�r�|dk�r�t	�|�}t|||�}
nt||t|��}
y|�|||
�t�d|�Wntk
�r(YnX|S)z�Concrete implementation of InspectLoader.get_code.

        Reading of bytecode requires path_stats to be implemented. To write
        bytecode, set_data must also be implemented.

        NFTr�)r�r*r�r#rOrK�never�always�sizez
{} matches {})r�rxrzzcode object from {}z
wrote {!r})r�rhrWr�r1rrr��
memoryviewr��check_hash_based_pycsr��_RAW_MAGIC_NUMBERr�r�r�r�r�r�r�rr�dont_write_bytecoder�r�r&r�)r�r�rzr�r�r��
hash_based�check_sourcerx�strFr�rX�
bytes_data�code_objectrrr	r�s�








zSourceLoader.get_codeN)
r�r�r�r�r�r�r�rrr�rrrr	r��s


r�cs|eZdZdZdd�Zdd�Zdd�Ze�fdd	��Zed
d��Z	dd
�Z
edd��Zdd�Zdd�Z
dd�Zdd�Z�ZS)�
FileLoaderzgBase file loader class which implements the loader protocol methods that
    require file system usage.cCs||_||_dS)zKCache the module name and the path to the file found by the
        finder.N)r�r*)r�r�r*rrr	r�tszFileLoader.__init__cCs|j|jko|j|jkS)N)�	__class__r�)r��otherrrr	�__eq__zszFileLoader.__eq__cCst|j�t|j�AS)N)�hashr�r*)r�rrr	�__hash__~szFileLoader.__hash__cstt|��|�S)zdLoad a module from a file.

        This method is deprecated.  Use exec_module() instead.

        )�superrr�)r�r�)rrr	r��s
zFileLoader.load_modulecCs|jS)z:Return the path to the source file as found by the finder.)r*)r�r�rrr	r��szFileLoader.get_filenamec	Cs t�|d��
}|��SQRXdS)z'Return the data from path as raw bytes.�rN)rArB�read)r�r*rIrrr	r�szFileLoader.get_datacCs|�|�r|SdS)N)r�)r�r�rrr	�get_resource_reader�s
zFileLoader.get_resource_readercCs tt|j�d|�}t�|d�S)NrOr)r"r.r*rArB)r��resourcer*rrr	�
open_resource�szFileLoader.open_resourcecCs&|�|�st�tt|j�d|�}|S)NrO)�is_resource�FileNotFoundErrorr"r.r*)r�rr*rrr	�
resource_path�s
zFileLoader.resource_pathcCs(t|krdStt|j�d|�}t|�S)NFrO)rr"r.r*r6)r�r�r*rrr	r�szFileLoader.is_resourcecCstt�t|j�d��S)NrO)�iterr�listdirr.r*)r�rrr	�contents�szFileLoader.contents)r�r�r�r�r�rrr�r�r�rrrr!rr$�
__classcell__rr)rr	rosrc@s.eZdZdZdd�Zdd�Zdd�dd	�Zd
S)�SourceFileLoaderz>Concrete implementation of SourceLoader using the file system.cCst|�}|j|jd�S)z!Return the metadata for the path.)r�r	)r0�st_mtime�st_size)r�r*rrrr	r��szSourceFileLoader.path_statscCst|�}|j|||d�S)N)�_mode)r�r�)r�rzrxrFr3rrr	r��sz SourceFileLoader._cache_bytecodei�)r)c	Cs�t|�\}}g}x&|r6t|�s6t|�\}}|�|�qWxnt|�D]b}t||�}yt�|�WqBtk
rtwBYqBtk
r�}zt	�
d||�dSd}~XYqBXqBWyt|||�t	�
d|�Wn0tk
r�}zt	�
d||�Wdd}~XYnXdS)zWrite bytes data to a file.zcould not create {!r}: {!r}Nzcreated {!r})r.r8r�r(r"r�mkdir�FileExistsErrorr1r�r�rJ)	r�r*rFr)�parentr~r!rrrrr	r��s*
zSourceFileLoader.set_dataN)r�r�r�r�r�r�r�rrrr	r&�sr&c@s eZdZdZdd�Zdd�ZdS)�SourcelessFileLoaderz-Loader which handles sourceless file imports.cCsD|�|�}|�|�}||d�}t|||�tt|�dd�||d�S)N)r�r*r�)r�rx)r�rr�r�r
)r�r�r*rFr�rrr	r��s

zSourcelessFileLoader.get_codecCsdS)z'Return None as there is no source code.Nr)r�r�rrr	r�szSourcelessFileLoader.get_sourceN)r�r�r�r�r�rrrrr	r-�sr-c@s\eZdZdZdd�Zdd�Zdd�Zdd	�Zd
d�Zdd
�Z	dd�Z
dd�Zedd��Z
dS)�ExtensionFileLoaderz]Loader for extension modules.

    The constructor is designed to work with FileFinder.

    cCs||_||_dS)N)r�r*)r�r�r*rrr	r�szExtensionFileLoader.__init__cCs|j|jko|j|jkS)N)rr�)r�rrrr	r	szExtensionFileLoader.__eq__cCst|j�t|j�AS)N)rr�r*)r�rrr	r
szExtensionFileLoader.__hash__cCs$t�tj|�}t�d|j|j�|S)z&Create an unitialized extension modulez&extension module {!r} loaded from {!r})r�r�r��create_dynamicr�r�r*)r�r�r�rrr	r�s

z!ExtensionFileLoader.create_modulecCs$t�tj|�t�d|j|j�dS)zInitialize an extension modulez(extension module {!r} executed from {!r}N)r�r�r��exec_dynamicr�r�r*)r�r�rrr	r�szExtensionFileLoader.exec_modulecs$t|j�d�t�fdd�tD��S)z1Return True if the extension module is a package.r#c3s|]}�d|kVqdS)r�Nr)r�suffix)�	file_namerr	�	<genexpr>!sz1ExtensionFileLoader.is_package.<locals>.<genexpr>)r.r*�any�EXTENSION_SUFFIXES)r�r�r)r2r	r�szExtensionFileLoader.is_packagecCsdS)z?Return None as an extension module cannot create a code object.Nr)r�r�rrr	r�$szExtensionFileLoader.get_codecCsdS)z5Return None as extension modules have no source code.Nr)r�r�rrr	r(szExtensionFileLoader.get_sourcecCs|jS)z:Return the path to the source file as found by the finder.)r*)r�r�rrr	r�,sz ExtensionFileLoader.get_filenameN)r�r�r�r�r�rrr�r�r�r�rr�r�rrrr	r.�sr.c@s`eZdZdZdd�Zdd�Zdd�Zdd	�Zd
d�Zdd
�Z	dd�Z
dd�Zdd�Zdd�Z
dS)�_NamespacePatha&Represents a namespace package's path.  It uses the module name
    to find its parent module, and from there it looks up the parent's
    __path__.  When this changes, the module's own path is recomputed,
    using path_finder.  For top-level modules, the parent module's path
    is sys.path.cCs$||_||_t|���|_||_dS)N)�_name�_pathr}�_get_parent_path�_last_parent_path�_path_finder)r�r�r*�path_finderrrr	r�9sz_NamespacePath.__init__cCs&|j�d�\}}}|dkrdS|dfS)z>Returns a tuple of (parent-module-name, parent-path-attr-name)rNr%)rr*�__path__)r7r')r�r,�dot�merrr	�_find_parent_path_names?sz&_NamespacePath._find_parent_path_namescCs|��\}}ttj||�S)N)r@r�r�modules)r��parent_module_name�path_attr_namerrr	r9Isz_NamespacePath._get_parent_pathcCsPt|���}||jkrJ|�|j|�}|dk	rD|jdkrD|jrD|j|_||_|jS)N)r}r9r:r;r7r�r�r8)r��parent_pathr�rrr	�_recalculateMs
z_NamespacePath._recalculatecCst|���S)N)r"rE)r�rrr	�__iter__Zsz_NamespacePath.__iter__cCs||j|<dS)N)r8)r��indexr*rrr	�__setitem__]sz_NamespacePath.__setitem__cCst|���S)N)r&rE)r�rrr	�__len__`sz_NamespacePath.__len__cCsd�|j�S)Nz_NamespacePath({!r}))r;r8)r�rrr	�__repr__csz_NamespacePath.__repr__cCs||��kS)N)rE)r��itemrrr	�__contains__fsz_NamespacePath.__contains__cCs|j�|�dS)N)r8r�)r�rKrrr	r�isz_NamespacePath.appendN)r�r�r�r�r�r@r9rErFrHrIrJrLr�rrrr	r62s

r6c@sPeZdZdd�Zedd��Zdd�Zdd�Zd	d
�Zdd�Z	d
d�Z
dd�ZdS)�_NamespaceLoadercCst|||�|_dS)N)r6r8)r�r�r*r<rrr	r�osz_NamespaceLoader.__init__cCsd�|j�S)zsReturn repr for the module.

        The method is deprecated.  The import machinery does the job itself.

        z<module {!r} (namespace)>)r;r�)r�r�rrr	�module_reprrsz_NamespaceLoader.module_reprcCsdS)NTr)r�r�rrr	r�{sz_NamespaceLoader.is_packagecCsdS)Nr%r)r�r�rrr	r~sz_NamespaceLoader.get_sourcecCstddddd�S)Nr%z<string>r�T)r)r)r�r�rrr	r��sz_NamespaceLoader.get_codecCsdS)z*Use default semantics for module creation.Nr)r�r�rrr	r��sz_NamespaceLoader.create_modulecCsdS)Nr)r�r�rrr	r��sz_NamespaceLoader.exec_modulecCst�d|j�t�||�S)zbLoad a namespace module.

        This method is deprecated.  Use exec_module() instead.

        z&namespace module loaded with path {!r})r�r�r8r�)r�r�rrr	r��sz_NamespaceLoader.load_moduleN)r�r�r�r�r�rNr�rr�r�r�r�rrrr	rMns	rMc@sjeZdZdZedd��Zedd��Zedd��Zedd	��Zeddd��Z	edd
d��Z
eddd��Zd
S)�
PathFinderz>Meta path finder for sys.path and package __path__ attributes.cCsDx>ttj���D],\}}|dkr*tj|=qt|d�r|��qWdS)z}Call the invalidate_caches() method on all path entry finders
        stored in sys.path_importer_caches (where implemented).N�invalidate_caches)�listr�path_importer_cache�itemsr�rP)r�r��finderrrr	rP�s


zPathFinder.invalidate_cachesc	CsTtjdk	rtjst�dt�x2tjD]$}y||�Stk
rFw$Yq$Xq$WdSdS)z.Search sys.path_hooks for a finder for 'path'.Nzsys.path_hooks is empty)r�
path_hooksrPrQr�r�)r�r*�hookrrr	�_path_hooks�szPathFinder._path_hookscCsf|dkr*yt��}Wntk
r(dSXytj|}Wn(tk
r`|�|�}|tj|<YnX|S)z�Get the finder for the path entry from sys.path_importer_cache.

        If the path entry is not in the cache, find the appropriate finder
        and cache it. If no finder is available, store None.

        r%N)rr7r rrR�KeyErrorrW)r�r*rTrrr	�_path_importer_cache�s
zPathFinder._path_importer_cachecCsRt|d�r|�|�\}}n|�|�}g}|dk	r<t�||�St�|d�}||_|S)Nr�)r�r�r�r�r�r�r�)r�r�rTr�r�r�rrr	�_legacy_get_spec�s

zPathFinder._legacy_get_specNc	Cs�g}x�|D]�}t|ttf�sq
|�|�}|dk	r
t|d�rH|�||�}n|�||�}|dkr^q
|jdk	rl|S|j}|dkr�t	d��|�
|�q
Wt�|d�}||_|SdS)z?Find the loader or namespace_path for this module/package name.Nr�zspec missing loader)
r�rZ�bytesrYr�r�rZr�r�r�r�r�r�)	r�r�r*r��namespace_path�entryrTr�r�rrr	�	_get_spec�s(



zPathFinder._get_speccCsd|dkrtj}|�|||�}|dkr(dS|jdkr\|j}|rVd|_t|||j�|_|SdSn|SdS)z�Try to find a spec for 'fullname' on sys.path or 'path'.

        The search is based on sys.path_hooks and sys.path_importer_cache.
        N)rr*r^r�r�r�r6)r�r�r*r�r�r\rrr	r��s
zPathFinder.find_speccCs|�||�}|dkrdS|jS)z�find the module on sys.path or 'path' based on sys.path_hooks and
        sys.path_importer_cache.

        This method is deprecated.  Use find_spec() instead.

        N)r�r�)r�r�r*r�rrr	r�szPathFinder.find_module)N)NN)N)r�r�r�r�r�rPrWrYrZr^r�r�rrrr	rO�s

rOc@sZeZdZdZdd�Zdd�ZeZdd�Zdd	�Z	ddd�Z
d
d�Zedd��Z
dd�Zd
S)�
FileFinderz�File-based finder.

    Interactions with the file system are cached for performance, being
    refreshed when the directory the finder is handling has been modified.

    csXg}x(|D] \�}|��fdd�|D��q
W||_|p:d|_d|_t�|_t�|_dS)z�Initialize with the path to search on and a variable number of
        2-tuples containing the loader and the file suffixes the loader
        recognizes.c3s|]}|�fVqdS)Nr)rr1)r�rr	r3-sz&FileFinder.__init__.<locals>.<genexpr>rNruN)r��_loadersr*�_path_mtime�set�_path_cache�_relaxed_path_cache)r�r*�loader_details�loadersr�r)r�r	r�'s
zFileFinder.__init__cCs
d|_dS)zInvalidate the directory mtime.ruN)ra)r�rrr	rP5szFileFinder.invalidate_cachescCs*|�|�}|dkrdgfS|j|jp&gfS)z�Try to find a loader for the specified module, or the namespace
        package portions. Returns (loader, list-of-portions).

        This method is deprecated.  Use find_spec() instead.

        N)r�r�r�)r�r�r�rrr	r�;s
zFileFinder.find_loadercCs|||�}t||||d�S)N)r�r�)r�)r�r�r�r*�smslr�r�rrr	r^Gs
zFileFinder._get_specNcCsbd}|�d�d}yt|jp"t���j}Wntk
rBd}YnX||jkr\|��||_t	�rr|j
}|��}n
|j}|}||kr�t
|j|�}xH|jD]6\}	}
d|	}t
||�}t|�r�|�|
|||g|�Sq�Wt|�}xX|jD]N\}	}
t
|j||	�}tjd|dd�||	|kr�t|�r�|�|
||d|�Sq�W|�r^t�d	|�t�|d�}
|g|
_|
SdS)
zoTry to find a spec for the specified module.

        Returns the matching spec, or None if not found.
        FrNrKrur�z	trying {})�	verbosityNzpossible namespace for {})r'r0r*rr7r'r1ra�_fill_cacher
rdrwrcr"r`r6r^r8r�r�r�r�)r�r�r��is_namespace�tail_moduler��cache�cache_module�	base_pathr1r��
init_filename�	full_pathr�rrr	r�LsF




zFileFinder.find_specc	
Cs�|j}yt�|pt���}Wntttfk
r:g}YnXtj�	d�sTt
|�|_nNt
�}x@|D]8}|�d�\}}}|r�d�
||���}n|}|�|�q`W||_tj�	t�r�dd�|D�|_dS)zDFill the cache of potential modules and packages for this directory.rrNz{}.{}cSsh|]}|���qSr)rw)r�fnrrr	�	<setcomp>�sz)FileFinder._fill_cache.<locals>.<setcomp>N)r*rr#r7r �PermissionError�NotADirectoryErrorrrr
rbrcrlr;rw�addrrd)	r�r*r$�lower_suffix_contentsrKr�r>r1�new_namerrr	ri|s"

zFileFinder._fill_cachecs��fdd�}|S)aA class method which returns a closure to use on sys.path_hook
        which will return an instance using the specified loaders and the path
        called on the closure.

        If the path called on the closure is not a directory, ImportError is
        raised.

        cs"t|�std|d���|f���S)z-Path hook for importlib.machinery.FileFinder.zonly directories are supported)r*)r8r�)r*)r�rerr	�path_hook_for_FileFinder�sz6FileFinder.path_hook.<locals>.path_hook_for_FileFinderr)r�rerxr)r�rer	�	path_hook�s
zFileFinder.path_hookcCsd�|j�S)NzFileFinder({!r}))r;r*)r�rrr	rJ�szFileFinder.__repr__)N)r�r�r�r�r�rPr�r�r�r^r�rir�ryrJrrrr	r_s
0r_cCs�|�d�}|�d�}|sB|r$|j}n||kr8t||�}n
t||�}|sTt|||d�}y$||d<||d<||d<||d<Wntk
r�YnXdS)N�
__loader__�__spec__)r��__file__�
__cached__)�getr�r-r&r��	Exception)�nsr��pathname�	cpathnamer�r�rrr	�_fix_up_module�s"


r�cCs&tt��f}ttf}ttf}|||gS)z_Returns a list of file-based module loaders.

    Each item is a tuple (loader, suffixes).
    )r.r��extension_suffixesr&rmr-r_)�
extensions�source�bytecoderrr	r��sr�c	Cs�|atjatjatjt}x8dD]0}|tjkr:t�|�}n
tj|}t|||�q Wddgfdddgff}xv|D]f\}}tdd�|D��s�t�|d}|tjkr�tj|}Pqpyt�|�}PWqpt	k
r�wpYqpXqpWt	d	��t|d
|�t|d|�t|dd
�
|��t�d�}	t|d|	�t�d�}
t|d|
�|dk�rXt�d�}t|d|�t|dt��t�
t���|dk�r�t�d�dtk�r�dt_dS)z�Setup the path-based importers for importlib by importing needed
    built-in modules and injecting them into the global namespace.

    Other components are extracted from the core bootstrap module.

    )rArP�builtinsr��posix�/�nt�\css|]}t|�dkVqdS)r#N)r&)rrdrrr	r3�sz_setup.<locals>.<genexpr>rOzimportlib requires posix or ntrrrr%�_thread�_weakref�winregr�r
z.pywz_d.pydTN)r�rr�rAr��_builtin_from_namer��allr�r�r rr5r�r�rmr�r�r�)�_bootstrap_module�self_module�builtin_name�builtin_module�
os_details�
builtin_osrr�	os_module�
thread_module�weakref_module�
winreg_modulerrr	�_setup�sL













r�cCs2t|�t�}tj�tj|�g�tj�t	�dS)z)Install the path-based import components.N)
r�r�rrUr�r_ry�	meta_pathr�rO)r��supported_loadersrrr	�_installsr�)r9)N)NNN)rOrO)T)N)N)=r�r�%_CASE_INSENSITIVE_PLATFORMS_BYTES_KEYrrrrr"r.r0r5r6r8rJ�type�__code__r�rr�rrrr^r]rmr_�DEBUG_BYTECODE_SUFFIXES�OPTIMIZED_BYTECODE_SUFFIXESrhrsr{rr�r�r�r�r�r�r�r�r�r��objectr�r�r�r�r�rr&r-r5r.r6rMrOr_r�r�r�r�rrrr	�<module>sv
	

-"!



C@D-5<*
@