mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
stdlib: Add defaults for positional-only parameters (#9655)
This commit is contained in:
@@ -10,7 +10,9 @@ if sys.version_info >= (3, 8):
|
||||
def libc_ver(executable: str | None = None, lib: str = "", version: str = "", chunksize: int = 16384) -> tuple[str, str]: ...
|
||||
|
||||
else:
|
||||
def libc_ver(executable: str = ..., lib: str = "", version: str = "", chunksize: int = 16384) -> tuple[str, str]: ...
|
||||
def libc_ver(
|
||||
executable: str = sys.executable, lib: str = "", version: str = "", chunksize: int = 16384
|
||||
) -> tuple[str, str]: ...
|
||||
|
||||
if sys.version_info < (3, 8):
|
||||
def linux_distribution(
|
||||
|
||||
Reference in New Issue
Block a user