eric7/DebugClients/Python/coverage/__main__.py@e91951ff3bbd
eric7/DebugClients/Python/coverage/__main__.py
Mon, 07 Feb 2022 22:02:35 +0100
- author
- T.Rzepka <Tobias.Rzepka@gmail.com>
- date
- Mon, 07 Feb 2022 22:02:35 +0100
- branch
- eric7
- changeset 8940
- e91951ff3bbd
- parent 8312
-
800c432b34c8
- permissions
- -rw-r--r--
Fixed cascaded imports which could prevent to apply threading patches. Therefore
breakpoints were ignored in such circumstances.
# 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())