<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet"
        integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"
        integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ=="
        crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
</html>

Re	                 @   s<   d  d l  Z  Gd d   d  Z d Z e e e  j   d S)	    Nc               @   sa   e  Z d  Z d Z f  d d d  Z e d d    Z d d d  Z d	 d
   Z d d   Z	 d S)VendorImporterz
    A PEP 302 meta path importer for finding optionally-vendored
    or otherwise naturally-installed packages from root_name.
    Nc             C   s7   | |  _  t |  |  _ | p- | j d d  |  _ d  S)NZextern_vendor)	root_namesetvendored_namesreplace
vendor_pkg)selfr   r   r    r
   /builddir/build/BUILDROOT/alt-python35-setuptools-36.3.0-4.el8.x86_64/opt/alt/python35/lib/python3.5/site-packages/pkg_resources/extern/__init__.py__init__
   s    	zVendorImporter.__init__c             c   s   |  j  d Vd Vd S)zL
        Search first the vendor package then as a natural package.
        . N)r   )r	   r
   r
   r   search_path   s    zVendorImporter.search_pathc             C   sL   | j  |  j d  \ } } } | r) d St t | j |  j   sH d S|  S)z
        Return self when fullname starts with root_name and the
        target module is one vendored through this importer.
        r   N)	partitionr   anymap
startswithr   )r	   fullnamepathrootbasetargetr
   r
   r   find_module   s    zVendorImporter.find_modulec             C   s   | j  |  j d  \ } } } x |  j D]j } yO | | } t |  t j | } | t j | <t j d k ry t j | =| SWq) t k
 r Yq) Xq) Wt d j t	       d S)zK
        Iterate over the search path to locate and load fullname.
        r      zThe '{target}' package is required; normally this is bundled with this package so if you get this warning, consult the packager of your distribution.N)r   r   )
r   r   r   
__import__sysmodulesversion_infoImportErrorformatlocals)r	   r   r   r   r   prefixZextantmodr
   r
   r   load_module#   s    


	zVendorImporter.load_modulec             C   s#   |  t  j k r t  j j |   d S)zR
        Install this importer into sys.meta_path if not already present.
        N)r   	meta_pathappend)r	   r
   r
   r   install@   s    zVendorImporter.install)
__name__
__module____qualname____doc__r   propertyr   r   r$   r'   r
   r
   r
   r   r      s   r   	packaging	pyparsingsixappdirs)r-   r.   r/   r0   )r   r   namesr(   r'   r
   r
   r
   r   <module>   s   D