DebugClients/Python/coverage/__main__.py@71c51aae2f4e
DebugClients/Python/coverage/__main__.py
Sat, 15 Oct 2016 20:36:37 +0200
- author
- T.Rzepka <Tobias.Rzepka@gmail.com>
- date
- Sat, 15 Oct 2016 20:36:37 +0200
- changeset 5240
- 71c51aae2f4e
- parent 5178
-
878ce843ca9f
- permissions
- -rw-r--r--
Use importlib instead __import__ because it returns the correct module directly.
# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
# For details: https://bitbucket.org/ned/coveragepy/src/default/NOTICE.txt
"""Coverage.py's main entry point."""
import sys
from coverage.cmdline import main
sys.exit(main())