🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-08-09 23:20:40 | PHP 8.2.33
📂
/ (Root)
/
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
setuptools
/
_vendor
/
zipp
/
__pycache__
📍 /opt/cloudlinux/venv/lib/python3.11/site-packages/setuptools/_vendor/zipp/__pycache__
🔄 Refresh
✏️
Editing: __init__.cpython-311.pyc
Read Only
� 1j�. � � � d Z ddlZddlZddlZddlZddlZddlZddlZddlZddl Z ddl mZ ddlm Z ddlmZ dgZd� Zd � Zej Z d � Z G d� d� � Z G d � dee j � � Z G d� de� � Zdd�Z G d� d� � ZdS )z� A Path-like interface for zipfiles. This codebase is shared between zipfile.Path in the stdlib and zipp in PyPI. See https://github.com/python/importlib_metadata/wiki/Development-Methodology for more detail. � N� )�save_method_args)� text_encoding)� Translator�Pathc �H � t j t | � � 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('')) [] r N)� itertools�islice� _ancestry)�paths �r/builddir/build/BUILD/cloudlinux-venv-1.0.11/venv/lib/python3.11/site-packages/setuptools/_vendor/zipp/__init__.py�_parentsr s � � ��I�d�O�O�Q��5�5�5� c # � K � | � t j � � } | � t j � � r<| V � t j | � � \ } }| � t j � � �:dS dS )a� 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('')) [] Multiple separators are treated like a single. >>> list(_ancestry('//b//d///f//')) ['//b//d///f', '//b//d', '//b'] N)�rstrip� posixpath�sep�split)r �tails r r r . sy � � � �* �;�;�y�}�%�%�D� �+�+�i�m� $� $� +�� � � ��_�T�*�*� ��d� �+�+�i�m� $� $� +� +� +� +� +r c �P � t j t |� � j | � � S )zZ Return items in minuend not in subtrahend, retaining order with O(1) lookup. )r �filterfalse�set�__contains__)�minuend� subtrahends r �_differencer M s � � � ��Z���!=�w�G�G�Gr c �B � � e Zd ZdZe� fd�� � Zd� Z� fd�Z� xZS )�InitializedStatez? Mix-in to save the initialization state for pickling. c �: �� t � � j |i |�� d S �N��super�__init__)�self�args�kwargs� __class__s �r r# zInitializedState.__init__Z s% �� ������$�)�&�)�)�)�)�)r c �2 � | j j | j j fS r )�_saved___init__r% r&