Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
hhhrrrttt222111
GitHub Repository: hhhrrrttt222111/Dorkify
Path: blob/master/venv/Lib/site-packages/lxml/usedoctest.py
811 views
1
"""Doctest module for XML comparison.
2
3
Usage::
4
5
>>> import lxml.usedoctest
6
>>> # now do your XML doctests ...
7
8
See `lxml.doctestcompare`
9
"""
10
11
from lxml import doctestcompare
12
13
doctestcompare.temp_install(del_module=__name__)
14
15