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