devtools/htmlparser.py
changeset 1977 606923dff11b
parent 1945 2b59d9ae17ae
child 2773 b2530e3e0afb
child 3151 5d45c0945bd3
equal deleted inserted replaced
1976:851e08142873 1977:606923dff11b
     1 """defines a validating HTML parser used in web application tests"""
     1 """defines a validating HTML parser used in web application tests
       
     2 
       
     3 :organization: Logilab
       
     4 :copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2.
       
     5 :contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
       
     6 :license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses
       
     7 """
     2 
     8 
     3 import re
     9 import re
     4 
    10 
     5 from lxml import etree
    11 from lxml import etree
     6 
    12