Coverage for tdom / __init__.py: 100%
4 statements
« prev ^ index » next coverage.py v7.13.0, created at 2026-01-12 16:43 +0000
« prev ^ index » next coverage.py v7.13.0, created at 2026-01-12 16:43 +0000
1from markupsafe import Markup, escape
3from .nodes import Comment, DocumentType, Element, Fragment, Node, Text
4from .processor import html
6# We consider `Markup` and `escape` to be part of this module's public API
8__all__ = [
9 "Comment",
10 "DocumentType",
11 "Element",
12 "escape",
13 "Fragment",
14 "html",
15 "Markup",
16 "Node",
17 "Text",
18]