Coverage for tdom/__init__.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.10.6, created at 2025-09-17 19:54 +0000

1from markupsafe import Markup, escape 

2 

3from .nodes import Comment, DocumentType, Element, Fragment, Node, Text 

4from .processor import html 

5 

6# We consider `Markup` and `escape` to be part of this module's public API 

7 

8__all__ = [ 

9 "Comment", 

10 "DocumentType", 

11 "Element", 

12 "escape", 

13 "Fragment", 

14 "html", 

15 "Markup", 

16 "Node", 

17 "Text", 

18]