diff options
Diffstat (limited to '.venv/lib/python3.12/site-packages/lxml/html/usedoctest.py')
-rw-r--r-- | .venv/lib/python3.12/site-packages/lxml/html/usedoctest.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.venv/lib/python3.12/site-packages/lxml/html/usedoctest.py b/.venv/lib/python3.12/site-packages/lxml/html/usedoctest.py new file mode 100644 index 00000000..f352a1cc --- /dev/null +++ b/.venv/lib/python3.12/site-packages/lxml/html/usedoctest.py @@ -0,0 +1,13 @@ +"""Doctest module for HTML comparison. + +Usage:: + + >>> import lxml.html.usedoctest + >>> # now do your HTML doctests ... + +See `lxml.doctestcompare`. +""" + +from lxml import doctestcompare + +doctestcompare.temp_install(html=True, del_module=__name__) |