Coverage for tdom/__init__.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.14.3, created at 2026-06-23 04:35 +0000

1from markupsafe import Markup, escape 

2 

3from .processor import html, svg 

4from .scope import Scope, ScopedTemplate 

5 

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

7 

8__all__ = [ 

9 "Markup", 

10 "Scope", 

11 "ScopedTemplate", 

12 "escape", 

13 "html", 

14 "svg", 

15]