summaryrefslogtreecommitdiff
path: root/coverage/types.py
diff options
context:
space:
mode:
Diffstat (limited to 'coverage/types.py')
-rw-r--r--coverage/types.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/coverage/types.py b/coverage/types.py
index 015c3747..d138b2f2 100644
--- a/coverage/types.py
+++ b/coverage/types.py
@@ -5,7 +5,8 @@
Types for use throughout coverage.py.
"""
-from typing import Dict, List, Optional, Tuple, Union, TYPE_CHECKING
+from types import ModuleType
+from typing import Dict, Iterable, List, Optional, Tuple, Union, TYPE_CHECKING
if TYPE_CHECKING:
# Protocol is new in 3.8. PYVERSIONS
@@ -53,6 +54,10 @@ TLineNo = int
TArc = Tuple[TLineNo, TLineNo]
+TMorf = Union[ModuleType, str]
+
+TSourceTokenLines = Iterable[List[Tuple[str, str]]]
+
## Debugging
class TWarnFn(Protocol):