From ba3679e43344e6f24734ea8b1066c0f54047b2b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oleg=20H=C3=B6fling?= Date: Sat, 8 Feb 2020 11:38:21 +0100 Subject: [PATCH] Add types for modulefinder instance fields (#3714) --- stdlib/2and3/modulefinder.pyi | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/stdlib/2and3/modulefinder.pyi b/stdlib/2and3/modulefinder.pyi index da99f29f4..4c4962843 100644 --- a/stdlib/2and3/modulefinder.pyi +++ b/stdlib/2and3/modulefinder.pyi @@ -22,6 +22,12 @@ class Module: # undocumented class ModuleFinder: modules: Dict[str, Module] + path: List[str] # undocumented + badmodules: Dict[str, Dict[str, int]] # undocumented + debug: int # undocumented + indent: int # undocumented + excludes: Container[str] # undocumented + replace_paths: Sequence[Tuple[str, str]] # undocumented def __init__(self, path: Optional[List[str]] = ..., debug: int = ..., excludes: Container[str] = ..., replace_paths: Sequence[Tuple[str, str]] = ...) -> None: ... def msg(self, level: int, str: str, *args: Any) -> None: ... # undocumented