src/eric7/DebugClients/Python/coverage/__main__.py@0e2ab682dfa3
src/eric7/DebugClients/Python/coverage/__main__.py
Tue, 06 Dec 2022 14:06:42 +0100
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Tue, 06 Dec 2022 14:06:42 +0100
- branch
- eric7
- changeset 9571
- 0e2ab682dfa3
- parent 9209
-
b99e7fd55fd3
- permissions
- -rw-r--r--
Fixed an issue in the multi process debugger causing a corrupted command line for an external non-Python program (e.g. if call via subprocess.Popen) (see issue466).
# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
# For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt
"""Coverage.py's main entry point."""
import sys
from coverage.cmdline import main
sys.exit(main())