DebugClients/Python/coverage/html.py

changeset 32
01f04fbc1842
parent 31
744cd0b4b8cd
child 790
2c0ea0163ef4
equal deleted inserted replaced
31:744cd0b4b8cd 32:01f04fbc1842
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

eric ide

mercurial