<!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>
B
    ´ÊÑa·  ã               @   sŒ   d Z ddlmZ ddlmZmZmZmZ yddlmZ W n e	k
rV   ddd„ZY nX ydd	lm
Z
 W n e	k
r†   dd
d„Z
Y nX dS )z™Backward compatibility layer with older version of six.

This is used to avoid virtualenv requring a version of six newer than what
the system may have.
é    )Úabsolute_import)ÚPY2ÚPY3Úbinary_typeÚ	text_type)Úensure_textúutf-8Ústrictc             C   s8   t | tƒr|  ||¡S t | tƒr$| S tdt| ƒ ƒ‚dS )zÎCoerce *s* to six.text_type.
        For Python 2:
        - `unicode` -> `unicode`
        - `str` -> `unicode`
        For Python 3:
        - `str` -> `str`
        - `bytes` -> decoded to `str`
        znot expecting type '%s'N)Ú
isinstancer   Údecoder   Ú	TypeErrorÚtype)ÚsÚencodingÚerrors© r   úD/opt/alt/python37/lib/python3.7/site-packages/virtualenv/util/six.pyr      s
    	

r   )Ú
ensure_strc             C   sX   t | ttfƒstdt| ƒ ƒ‚tr:t | tƒr:|  ||¡} ntrTt | tƒrT|  ||¡} | S )zÉCoerce *s* to `str`.
        For Python 2:
        - `unicode` -> encoded to `str`
        - `str` -> `str`
        For Python 3:
        - `str` -> `str`
        - `bytes` -> decoded to `str`
        znot expecting type '%s')	r
   r   r   r   r   r   Úencoder   r   )r   r   r   r   r   r   r   #   s    	r   N)r   r	   )r   r	   )Ú__doc__Ú
__future__r   Zsixr   r   r   r   r   ÚImportErrorr   r   r   r   r   Ú<module>   s   