mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 12:44:28 +08:00
Update CoverageResults for 3.13 (#12325)
This commit is contained in:
@@ -27,7 +27,18 @@ class CoverageResults:
|
||||
outfile: StrPath | None = None,
|
||||
) -> None: ... # undocumented
|
||||
def update(self, other: CoverageResults) -> None: ...
|
||||
def write_results(self, show_missing: bool = True, summary: bool = False, coverdir: StrPath | None = None) -> None: ...
|
||||
if sys.version_info >= (3, 13):
|
||||
def write_results(
|
||||
self,
|
||||
show_missing: bool = True,
|
||||
summary: bool = False,
|
||||
coverdir: StrPath | None = None,
|
||||
*,
|
||||
ignore_missing_files: bool = False,
|
||||
) -> None: ...
|
||||
else:
|
||||
def write_results(self, show_missing: bool = True, summary: bool = False, coverdir: StrPath | None = None) -> None: ...
|
||||
|
||||
def write_results_file(
|
||||
self, path: StrPath, lines: Sequence[str], lnotab: Any, lines_hit: Mapping[int, int], encoding: str | None = None
|
||||
) -> tuple[int, int]: ...
|
||||
|
||||
Reference in New Issue
Block a user