ó
	Q˜[c           @@  sR   d  d l  m Z d  d l m Z e Z e r9 d  d l Tn e d „ Z d g Z d S(   i    (   t   absolute_import(   t   PY3(   t   *c         C@  sg   |  j  d d ƒ }  |  j  d d ƒ }  |  j  d d ƒ }  | rc |  j  d d ƒ }  |  j  d	 d
 ƒ }  n  |  S(   s	  
        Replace special characters "&", "<" and ">" to HTML-safe sequences.
        If the optional flag quote is true (the default), the quotation mark
        characters, both double quote (") and single quote (') characters are also
        translated.
        t   &s   &amp;t   <s   &lt;t   >s   &gt;t   "s   &quot;s   's   &#x27;(   t   replace(   t   st   quote(    (    s9   lib/python2.7/site-packages/future/moves/html/__init__.pyt   escape   s    R
   N(	   t
   __future__R    t   future.utilsR   t   Truet   __future_module__t   htmlR
   t   __all__(    (    (    s9   lib/python2.7/site-packages/future/moves/html/__init__.pyt   <module>   s   
