eric6/DebugClients/Python/coverage/__main__.py@c4c6b2784eec
eric6/DebugClients/Python/coverage/__main__.py
Fri, 01 Jan 2021 16:25:30 +0100
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Fri, 01 Jan 2021 16:25:30 +0100
- changeset 7932
- c4c6b2784eec
- parent 7427
-
362cd1b6f81a
- permissions
- -rw-r--r--
Debugger: fixed an issue related to multiprocessing on Windows and macOS because these use the 'spawn' method.
# 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())