DebugClients/Python/coverage/__main__.py@706ac32a4538
DebugClients/Python/coverage/__main__.py
Sat, 18 Feb 2017 13:52:07 +0100
- author
- T.Rzepka <Tobias.Rzepka@gmail.com>
- date
- Sat, 18 Feb 2017 13:52:07 +0100
- branch
- debugger fine grinding
- changeset 5537
- 706ac32a4538
- parent 5178
-
878ce843ca9f
- permissions
- -rw-r--r--
Improved handling of program termination. atexit is only run once as specified anymore.
# 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())