Sindbad~EG File Manager

Current Path : /usr/local/lib/python3.6/site-packages/__pycache__/
Upload File :
Current File : //usr/local/lib/python3.6/site-packages/__pycache__/zipp.cpython-36.pyc

3

"��c� �@s�ddlZddlZddlZddlZddlZddlZddlZejdkrPddlm	Z	ne
Z	dgZdd�Zdd	�Z
e	jZd
d�ZGdd
�d
ej�ZGdd�de�Zdd�ZGdd�d�ZdS)�N��)�OrderedDict�PathcCstjt|�dd�S)a2
    Given a path with elements separated by
    posixpath.sep, generate all parents of that path.

    >>> list(_parents('b/d'))
    ['b']
    >>> list(_parents('/b/d/'))
    ['/b']
    >>> list(_parents('b/d/f/'))
    ['b/d', 'b']
    >>> list(_parents('b'))
    []
    >>> list(_parents(''))
    []
    �N)�	itertools�islice�	_ancestry)�path�r�$/tmp/pip-build-_uu8ur7s/zipp/zipp.py�_parentssr
ccs8|jtj�}x&|r2|tjkr2|Vtj|�\}}qWdS)aR
    Given a path with elements separated by
    posixpath.sep, generate all elements of that path

    >>> list(_ancestry('b/d'))
    ['b/d', 'b']
    >>> list(_ancestry('/b/d/'))
    ['/b/d', '/b']
    >>> list(_ancestry('b/d/f/'))
    ['b/d/f', 'b/d', 'b']
    >>> list(_ancestry('b'))
    ['b']
    >>> list(_ancestry(''))
    []
    N)�rstrip�	posixpath�sep�split)r
�tailrrrr	%sr	cCstjt|�j|�S)zZ
    Return items in minuend not in subtrahend, retaining order
    with O(1) lookup.
    )r�filterfalse�set�__contains__)ZminuendZ
subtrahendrrr�_difference?srcsHeZdZdZedd��Z�fdd�Zdd�Zdd	�Ze	d
d��Z
�ZS)�CompleteDirszk
    A ZipFile subclass that ensures that implied directories
    are always included in the namelist.
    cCs.tjjtt|��}dd�|D�}tt||��S)Ncss|]}|tjVqdS)N)rr)�.0�prrr�	<genexpr>Psz-CompleteDirs._implied_dirs.<locals>.<genexpr>)r�chain�
from_iterable�mapr
�_deduper)�names�parentsZas_dirsrrr�
_implied_dirsMszCompleteDirs._implied_dirscs tt|�j�}|t|j|��S)N)�superr�namelist�listr!)�selfr)�	__class__rrr#SszCompleteDirs.namelistcCst|j��S)N)rr#)r%rrr�	_name_setWszCompleteDirs._name_setcCs,|j�}|d}||ko||k}|r(|S|S)zx
        If the name represents a directory, return that name
        as a directory (with the trailing slash).
        �/)r')r%�namer�dirnameZ	dir_matchrrr�resolve_dirZszCompleteDirs.resolve_dircCs>t|t�r|St|tj�s&|t|��Sd|jkr4t}||_|S)zl
        Given a source (filename or zipfile), return an
        appropriate CompleteDirs subclass.
        �r)�
isinstancer�zipfile�ZipFile�_pathlib_compat�moder&)�cls�sourcerrr�makeds

zCompleteDirs.make)�__name__�
__module__�__qualname__�__doc__�staticmethodr!r#r'r+�classmethodr4�
__classcell__rr)r&rrGs
rcs,eZdZdZ�fdd�Z�fdd�Z�ZS)�
FastLookupzV
    ZipFile subclass to ensure implicit
    dirs exist and are resolved rapidly.
    c
s.tjt��|jSQRXtt|�j�|_|jS)N)�
contextlib�suppress�AttributeErrorZ_FastLookup__namesr"r<r#)r%)r&rrr#~szFastLookup.namelistc
s.tjt��|jSQRXtt|�j�|_|jS)N)r=r>r?Z_FastLookup__lookupr"r<r')r%)r&rrr'�szFastLookup._name_set)r5r6r7r8r#r'r;rr)r&rr<xsr<cCs&y|j�Stk
r t|�SXdS)zi
    For path-like objects, convert to a filename for compatibility
    on Python 3.6.1 and earlier.
    N)�
__fspath__r?�str)r
rrrr0�sr0c@s�eZdZdZdZd-dd�Zd.dd�d	d
�Zedd��Zed
d��Z	edd��Z
edd��Zedd��Zdd�Z
dd�Zdd�Zdd�Zdd�Zdd �Zd!d"�Zd#d$�Zd%d&�Zd'd(�Zd)d*�ZeZed+d,��ZdS)/ru4
    A pathlib-compatible interface for zip files.

    Consider a zip file with this structure::

        .
        ├── a.txt
        └── b
            ├── c.txt
            └── d
                └── e.txt

    >>> data = io.BytesIO()
    >>> zf = zipfile.ZipFile(data, 'w')
    >>> zf.writestr('a.txt', 'content of a')
    >>> zf.writestr('b/c.txt', 'content of c')
    >>> zf.writestr('b/d/e.txt', 'content of e')
    >>> zf.filename = 'mem/abcde.zip'

    Path accepts the zipfile object itself or a filename

    >>> root = Path(zf)

    From there, several path operations are available.

    Directory iteration (including the zip file itself):

    >>> a, b = root.iterdir()
    >>> a
    Path('mem/abcde.zip', 'a.txt')
    >>> b
    Path('mem/abcde.zip', 'b/')

    name property:

    >>> b.name
    'b'

    join with divide operator:

    >>> c = b / 'c.txt'
    >>> c
    Path('mem/abcde.zip', 'b/c.txt')
    >>> c.name
    'c.txt'

    Read text:

    >>> c.read_text()
    'content of c'

    existence:

    >>> c.exists()
    True
    >>> (b / 'missing.txt').exists()
    False

    Coercion to string:

    >>> import os
    >>> str(c).replace(os.sep, posixpath.sep)
    'mem/abcde.zip/b/c.txt'

    At the root, ``name``, ``filename``, and ``parent``
    resolve to the zipfile. Note these attributes are not
    valid and will raise a ``ValueError`` if the zipfile
    has no filename.

    >>> root.name
    'abcde.zip'
    >>> str(root.filename).replace(os.sep, posixpath.sep)
    'mem/abcde.zip'
    >>> str(root.parent)
    'mem'
    z>{self.__class__.__name__}({self.root.filename!r}, {self.at!r})�cCstj|�|_||_dS)aX
        Construct a Path from a ZipFile or filename.

        Note: When the source is an existing ZipFile object,
        its type (__class__) will be mutated to a
        specialized type. If the caller wishes to retain the
        original type, the caller should either create a
        separate ZipFile object or pass a filename.
        N)r<r4�root�at)r%rCrDrrr�__init__�s
z
Path.__init__r,N)�pwdcOst|j�rt|��|d}|j�r2|dkr2t|��|jj|j||d�}d|krb|sV|r^td��|Stj	|f|�|�S)z�
        Open this entry as text or binary following the semantics
        of ``pathlib.Path.open()`` by passing arguments through
        to io.TextIOWrapper().
        rr,)rF�bz*encoding args invalid for binary operation)
�is_dir�IsADirectoryError�exists�FileNotFoundErrorrC�openrD�
ValueError�io�
TextIOWrapper)r%r1rF�args�kwargsZzip_mode�streamrrrrL�sz	Path.opencCstj|j�jp|jjS)N)�pathlibrrDr)�filename)r%rrrr)sz	Path.namecCstj|j�jp|jjS)N)rSrrD�suffixrT)r%rrrrU	szPath.suffixcCstj|j�jp|jjS)N)rSrrD�suffixesrT)r%rrrrV
sz
Path.suffixescCstj|j�jp|jjS)N)rSrrD�stemrT)r%rrrrWsz	Path.stemcCstj|jj�j|j�S)N)rSrrCrT�joinpathrD)r%rrrrTsz
Path.filenamec	Os$|jd|�|��
}|j�SQRXdS)Nr,)r,)rL�read)r%rPrQ�strmrrr�	read_textszPath.read_textc	Cs|jd��
}|j�SQRXdS)N�rb)rLrY)r%rZrrr�
read_bytesszPath.read_bytescCstj|jjd��|jjd�kS)Nr()rr*rDr)r%r
rrr�	_is_child!szPath._is_childcCs|j|j|�S)N)r&rC)r%rDrrr�_next$sz
Path._nextcCs|jp|jjd�S)Nr()rD�endswith)r%rrrrH'szPath.is_dircCs|j�o|j�S)N)rJrH)r%rrr�is_file*szPath.is_filecCs|j|jj�kS)N)rDrCr')r%rrrrJ-szPath.existscCs.|j�std��t|j|jj��}t|j|�S)NzCan't listdir a file)rHrMrr_rCr#�filterr^)r%�subsrrr�iterdir0szPath.iterdircCstj|jj|j�S)N)r�joinrCrTrD)r%rrr�__str__6szPath.__str__cCs|jj|d�S)N)r%)�_Path__repr�format)r%rrr�__repr__9sz
Path.__repr__cGs*tj|jftt|���}|j|jj|��S)N)rrerDrr0r_rCr+)r%�other�nextrrrrX<sz
Path.joinpathcCs6|js|jjStj|jjd��}|r,|d7}|j|�S)Nr()rDrT�parentrr*rr_)r%Z	parent_atrrrrlBszPath.parent)rB)r,)r5r6r7r8rgrErL�propertyr)rUrVrWrTr[r]r^r_rHrarJrdrfrirX�__truediv__rlrrrrr�s,L

)rr)rNrr.rr=�sysrS�version_info�collectionsr�dict�__all__r
r	�fromkeysrrr/rr<r0rrrrr�<module>s$
1

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists