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