mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 13:04:46 +08:00
10 lines
238 B
Python
10 lines
238 B
Python
# Stubs for doctest
|
|
|
|
# NOTE: These are incomplete!
|
|
|
|
from typing import Any, Tuple
|
|
|
|
# TODO arguments missing
|
|
def testmod(module: Any = None, *, name: str = None, globs: Any = None,
|
|
verbose: bool = None) -> Tuple[int, int]: ...
|