mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-08 22:36:18 +08:00
cb97bb54c0
Closes #579.
10 lines
226 B
Python
10 lines
226 B
Python
# Stubs for doctest
|
|
|
|
# NOTE: These are incomplete!
|
|
|
|
from typing import Any, Tuple
|
|
|
|
# TODO arguments missing
|
|
def testmod(m: Any = ..., name: str = ..., globs: Any = ...,
|
|
verbose: bool = ...) -> Tuple[int, int]: ...
|