Package lxml :: Package html :: Module usedoctest
[frames] | no frames]

Source Code for Module lxml.html.usedoctest

 1  """Doctest module for HTML comparison. 
 2   
 3  Usage:: 
 4   
 5     >>> import lxml.html.usedoctest 
 6     >>> # now do your HTML doctests ... 
 7   
 8  See `lxml.doctestcompare`. 
 9  """ 
10   
11  from lxml import doctestcompare 
12   
13  doctestcompare.temp_install(html=True, del_module=__name__) 
14