mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-02 17:43:25 +08:00
stdlib: add argument default values (#9501)
This commit is contained in:
@@ -10,6 +10,6 @@ _T = TypeVar("_T")
|
||||
def randbelow(exclusive_upper_bound: int) -> int: ...
|
||||
def randbits(k: int) -> int: ...
|
||||
def choice(seq: SupportsLenAndGetItem[_T]) -> _T: ...
|
||||
def token_bytes(nbytes: int | None = ...) -> bytes: ...
|
||||
def token_hex(nbytes: int | None = ...) -> str: ...
|
||||
def token_urlsafe(nbytes: int | None = ...) -> str: ...
|
||||
def token_bytes(nbytes: int | None = None) -> bytes: ...
|
||||
def token_hex(nbytes: int | None = None) -> str: ...
|
||||
def token_urlsafe(nbytes: int | None = None) -> str: ...
|
||||
|
||||
Reference in New Issue
Block a user