OXIESEC PANEL
- Current Dir:
/
/
opt
/
alt
/
python311
/
lib
/
python3.11
/
site-packages
/
setuptools
/
__pycache__
Server IP: 2a02:4780:11:1594:0:ef5:22d7:a
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/14/2024 03:17:31 PM
rwxr-xr-x
📄
__init__.cpython-311.pyc
11.61 KB
05/14/2024 03:17:31 PM
rw-r--r--
📄
_deprecation_warning.cpython-311.pyc
634 bytes
05/14/2024 03:17:31 PM
rw-r--r--
📄
_imp.cpython-311.pyc
3.3 KB
05/14/2024 03:17:31 PM
rw-r--r--
📄
archive_util.cpython-311.pyc
8.66 KB
05/14/2024 03:17:31 PM
rw-r--r--
📄
build_meta.cpython-311.pyc
13.98 KB
05/14/2024 03:17:31 PM
rw-r--r--
📄
config.cpython-311.pyc
27.48 KB
05/14/2024 03:17:31 PM
rw-r--r--
📄
dep_util.cpython-311.pyc
1.24 KB
05/14/2024 03:17:31 PM
rw-r--r--
📄
depends.cpython-311.pyc
7.69 KB
05/14/2024 03:17:31 PM
rw-r--r--
📄
dist.cpython-311.pyc
66.55 KB
05/14/2024 03:17:31 PM
rw-r--r--
📄
errors.cpython-311.pyc
962 bytes
05/14/2024 03:17:31 PM
rw-r--r--
📄
extension.cpython-311.pyc
2.79 KB
05/14/2024 03:17:31 PM
rw-r--r--
📄
glob.cpython-311.pyc
6.58 KB
05/14/2024 03:17:31 PM
rw-r--r--
📄
installer.cpython-311.pyc
7.55 KB
05/14/2024 03:17:31 PM
rw-r--r--
📄
launch.cpython-311.pyc
1.33 KB
05/14/2024 03:17:31 PM
rw-r--r--
📄
lib2to3_ex.cpython-311.pyc
3.81 KB
05/14/2024 03:17:31 PM
rw-r--r--
📄
monkey.cpython-311.pyc
7.35 KB
05/14/2024 03:17:31 PM
rw-r--r--
📄
msvc.cpython-311.pyc
59.52 KB
05/14/2024 03:17:31 PM
rw-r--r--
📄
namespaces.cpython-311.pyc
5.64 KB
05/14/2024 03:17:31 PM
rw-r--r--
📄
package_index.cpython-311.pyc
59.41 KB
05/14/2024 03:17:31 PM
rw-r--r--
📄
py27compat.cpython-311.pyc
2.62 KB
05/14/2024 03:17:31 PM
rw-r--r--
📄
py31compat.cpython-311.pyc
1.61 KB
05/14/2024 03:17:31 PM
rw-r--r--
📄
py33compat.cpython-311.pyc
2.25 KB
05/14/2024 03:17:31 PM
rw-r--r--
📄
py34compat.cpython-311.pyc
709 bytes
05/14/2024 03:17:31 PM
rw-r--r--
📄
sandbox.cpython-311.pyc
26.97 KB
05/14/2024 03:17:31 PM
rw-r--r--
📄
site-patch.cpython-311.pyc
2.93 KB
05/14/2024 03:17:31 PM
rw-r--r--
📄
ssl_support.cpython-311.pyc
11.78 KB
05/14/2024 03:17:31 PM
rw-r--r--
📄
unicode_utils.cpython-311.pyc
1.87 KB
05/14/2024 03:17:31 PM
rw-r--r--
📄
version.cpython-311.pyc
429 bytes
05/14/2024 03:17:31 PM
rw-r--r--
📄
wheel.cpython-311.pyc
15.02 KB
05/14/2024 03:17:31 PM
rw-r--r--
📄
windows_support.cpython-311.pyc
1.42 KB
05/14/2024 03:17:31 PM
rw-r--r--
Editing: archive_util.cpython-311.pyc
Close
� ��Cf� � � � d Z ddlZddlZddlZddlZddlZddlZddlmZ ddl m Z g d�Z G d� de� � Zd� Z e dfd �Ze fd �Ze fd�Ze fd�ZeeefZdS ) z/Utilities for extracting common archive formats� N)�DistutilsError)�ensure_directory)�unpack_archive�unpack_zipfile�unpack_tarfile�default_filter�UnrecognizedFormat�extraction_drivers�unpack_directoryc � � e Zd ZdZdS )r z#Couldn't recognize the archive typeN)�__name__� __module__�__qualname__�__doc__� � �J/opt/alt/python311/lib/python3.11/site-packages/setuptools/archive_util.pyr r s � � � � � �-�-�-�-r r c � � |S )z@The default progress/filter callback; returns True for all filesr )�src�dsts r r r s � ��Jr c �~ � |pt D ]"} || ||� � dS # t $ r Y �w xY wt d| z � � �)a� Unpack `filename` to `extract_dir`, or raise ``UnrecognizedFormat`` `progress_filter` is a function taking two arguments: a source path internal to the archive ('/'-separated), and a filesystem path where it will be extracted. The callback must return the desired extract path (which may be the same as the one passed in), or else ``None`` to skip that file or directory. The callback can thus be used to report on the progress of the extraction, as well as to filter the items extracted or alter their extraction paths. `drivers`, if supplied, must be a non-empty sequence of functions with the same signature as this function (minus the `drivers` argument), that raise ``UnrecognizedFormat`` if they do not support extracting the designated archive type. The `drivers` are tried in sequence until one is found that does not raise an error, or until all are exhausted (in which case ``UnrecognizedFormat`` is raised). If you do not supply a sequence of drivers, the module's ``extraction_drivers`` constant will be used, which means that ``unpack_zipfile`` and ``unpack_tarfile`` will be tried, in that order. Nz!Not a recognized archive type: %s)r r )�filename�extract_dir�progress_filter�drivers�drivers r r r sy � �, �/�/� � �� ��F�8�[�/�:�:�:� �F�F�� "� � � ��H� ���� !�/�(�:� � � s � � *�*c �| � t j � | � � st d| z � � �| d|fi}t j | � � D ]�\ }}}|| \ }}|D ]K} || z dz t j � || � � f|t j � || � � <