£Á°èZ¨Ä…–K§‚«“ô4“ÒÙ´dîfUÙÃÅ WKbyÊ¦•êŽ…È®FÒ¿ÊÎóCozá¬S@6{Í:›œêZÌ:Š•_%:¢¾¾~;‘Ã~èŠ©ÊÇí`ÔÑ©úë™µ'5I¿fš×WO%ø9¾«¾DK|€ùÍD”Ýs]nHÕ¶ê×Ó¼ãžªéUWŸÈË%DÒÕ¬ï‘]/Åcx  ‰ï2ß]ä6G[]S£ÔÏ¯rs{úëóµmÒï#UQxo·õÞCe]"±/aÙ&Eã4ú9Jé_ÞåëdãöKë)AÞ                  ¯¹ægƒÛowÐø^d™ý½ßB7áyMä9ÜÖUã
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
<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 )zBackward 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 )zCoerce *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 )zCoerce *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   