1 """HTML reporting for Coverage.""" |
1 """HTML reporting for Coverage.""" |
2 |
2 |
3 import os, re, shutil |
3 import os, re, shutil |
4 |
4 |
5 from coverage import __url__, __version__ # pylint: disable-msg=W0611 |
5 from . import __url__, __version__ # pylint: disable-msg=W0611 |
6 from coverage.phystokens import source_token_lines |
6 from .phystokens import source_token_lines |
7 from coverage.report import Reporter |
7 from .report import Reporter |
8 from coverage.templite import Templite |
8 from .templite import Templite |
9 |
9 |
10 # Disable pylint msg W0612, because a bunch of variables look unused, but |
10 # Disable pylint msg W0612, because a bunch of variables look unused, but |
11 # they're accessed in a templite context via locals(). |
11 # they're accessed in a templite context via locals(). |
12 # pylint: disable-msg=W0612 |
12 # pylint: disable-msg=W0612 |
13 |
13 |