DebugClients/Python/coverage/__main__.py@dcf8c50ed06a
DebugClients/Python/coverage/__main__.py
Sun, 24 Dec 2017 15:19:00 +0100
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Sun, 24 Dec 2017 15:19:00 +0100
- changeset 6040
- dcf8c50ed06a
- parent 5178
-
878ce843ca9f
- permissions
- -rw-r--r--
Fixed an issue in the debug client causing it to enter an inifinite loop if the frontend crashed.
# 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())