mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-25 04:16:44 +08:00
stdlib: Add defaults for positional-only parameters (#9655)
This commit is contained in:
@@ -116,7 +116,7 @@ if sys.version_info >= (3, 9):
|
||||
def nextafter(__x: _SupportsFloatOrIndex, __y: _SupportsFloatOrIndex) -> float: ...
|
||||
|
||||
if sys.version_info >= (3, 8):
|
||||
def perm(__n: SupportsIndex, __k: SupportsIndex | None = ...) -> int: ...
|
||||
def perm(__n: SupportsIndex, __k: SupportsIndex | None = None) -> int: ...
|
||||
|
||||
def pow(__x: _SupportsFloatOrIndex, __y: _SupportsFloatOrIndex) -> float: ...
|
||||
|
||||
|
||||
Reference in New Issue
Block a user