
 X                 @   s   d  d l  m Z d  d l m Z y e j Z Wn( e k
 rW Gd d   d e  Z Yn Xe j r} Gd d   d e j	  Z	 n	 e j	 Z	 d S)    )six)html_parserc               @   s   e  Z d  Z d S)HTMLParseErrorN)__name__
__module____qualname__ r   r   F/home/ubuntu/projects/ifolica/build/django/django/utils/html_parser.pyr      s   r   c               @   s%   e  Z d  Z d Z d d d  Z d S)
HTMLParserzExplicitly set convert_charrefs to be False.

        This silences a deprecation warning on Python 3.4, but we can't do
        it at call time because Python 2.7 does not have the keyword
        argument.
        Fc             K   s   t  j j |  d | | d  S)Nconvert_charrefs)_html_parserr
   __init__)selfr   kwargsr   r   r	   r      s    zHTMLParser.__init__N)r   r   r   __doc__r   r   r   r   r	   r
      s   r
   N)
Zdjango.utilsr   Zdjango.utils.six.movesr   r   r   AttributeError	ExceptionPY3r
   r   r   r   r	   <module>   s   	
