mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-20 19:01:15 +08:00
Consistently use '= ...' for optional parameters.
This commit is contained in:
@@ -5,5 +5,5 @@
|
||||
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]: ...
|
||||
def testmod(module: Any = ..., *, name: str = ..., globs: Any = ...,
|
||||
verbose: bool = ...) -> Tuple[int, int]: ...
|
||||
|
||||
Reference in New Issue
Block a user