mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-10 13:32:26 +08:00
stdlib: Add defaults for positional-only parameters (#9655)
This commit is contained in:
@@ -32,8 +32,8 @@ def ratecv(
|
||||
__inrate: int,
|
||||
__outrate: int,
|
||||
__state: _RatecvState | None,
|
||||
__weightA: int = ...,
|
||||
__weightB: int = ...,
|
||||
__weightA: int = 1,
|
||||
__weightB: int = 0,
|
||||
) -> tuple[bytes, _RatecvState]: ...
|
||||
def reverse(__fragment: bytes, __width: int) -> bytes: ...
|
||||
def rms(__fragment: bytes, __width: int) -> int: ...
|
||||
|
||||
Reference in New Issue
Block a user