diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2023-01-10 13:49:05 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2023-01-10 13:49:05 -0500 |
commit | c55dffe5284dc99f7a6764f2f45ab82140733d93 (patch) | |
tree | 11c6bf631e25a2986e9d42cc23088e7bf3d1621f /coverage/fullcoverage/encodings.py | |
parent | c9d473b05a1cdcd9d04185ee4fb4b86e1e5f08e3 (diff) | |
download | python-coveragepy-git-c55dffe5284dc99f7a6764f2f45ab82140733d93.tar.gz |
mypy: exclude fullcoverage/encodings.py
Diffstat (limited to 'coverage/fullcoverage/encodings.py')
-rw-r--r-- | coverage/fullcoverage/encodings.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/coverage/fullcoverage/encodings.py b/coverage/fullcoverage/encodings.py index b8841866..73bd5646 100644 --- a/coverage/fullcoverage/encodings.py +++ b/coverage/fullcoverage/encodings.py @@ -14,6 +14,9 @@ execute from the very earliest stages of Python's own boot process. This fixes a problem with coverage.py - that it starts too late to trace the coverage of many of the most fundamental modules in the Standard Library. +DO NOT import other modules into here, it will interfere with the goal of this +code executing before all imports. This is why this file isn't type-checked. + """ import sys |