DebugClients/Python/coverage/cmdline.py

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

eric ide

mercurial