1 """Command-line support for Coverage.""" |
1 """Command-line support for Coverage.""" |
2 |
2 |
3 import optparse, re, sys |
3 import optparse, re, sys |
4 |
4 |
5 from coverage.execfile import run_python_file |
5 from .execfile import run_python_file |
6 from coverage.misc import CoverageException |
6 from .misc import CoverageException |
7 |
7 |
8 |
8 |
9 class Opts(object): |
9 class Opts(object): |
10 """A namespace class for individual options we'll build parsers from.""" |
10 """A namespace class for individual options we'll build parsers from.""" |
11 |
11 |